Skip to content

Bump prettier from 3.2.3 to 3.2.4 #57

Bump prettier from 3.2.3 to 3.2.4

Bump prettier from 3.2.3 to 3.2.4 #57

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build-node:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 21.x
uses: actions/setup-node@v1
with:
node-version: 21.x
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v1
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: npm install and test
run: |
npm install
npm run test --if-present
env:
CI: true