Skip to content

Bump actions/setup-node from 4 to 5 #64

Bump actions/setup-node from 4 to 5

Bump actions/setup-node from 4 to 5 #64

Workflow file for this run

name: build-test-lint
on:
pull_request:
push:
permissions:
contents: write
actions: read
checks: write
statuses: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
with: # give hint for pull requests
ref: ${{ github.head_ref }}
- name: use node.js
uses: actions/setup-node@v5
with:
node-version: '20.x'
- run: npm install
- run: npm audit fix
- run: npm run test:unit
- run: npm run lint:fix
- uses: stefanzweifel/git-auto-commit-action@v5