Skip to content

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

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

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

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@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.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