Skip to content

chore(deps): update actions/setup-node action to v4.2.0 #364

chore(deps): update actions/setup-node action to v4.2.0

chore(deps): update actions/setup-node action to v4.2.0 #364

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: audit
run: npm audit --production
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
- name: Run scripts
run: |
npm run lint
npm test