Skip to content

🆙 action: Bump actions/setup-node from 3.6.0 to 3.7.0 #225

🆙 action: Bump actions/setup-node from 3.6.0 to 3.7.0

🆙 action: Bump actions/setup-node from 3.6.0 to 3.7.0 #225

Workflow file for this run

name: test
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
permissions: read-all
env:
CI: true
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install --ignore-scripts --pure-lockfile
- run: npm run build --if-present
- run: npm run test --if-present