diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 297d1c68..92275743 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,4 +1,4 @@ -name: Node.js CI +name: CI on: push: @@ -7,13 +7,13 @@ on: jobs: build: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 20 - run: npm ci + - run: npm run lint - run: npm run build - run: npm run test