Skip to content

🆙 action: Bump actions/setup-node from 3.6.0 to 3.8.1 #229

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

🆙 action: Bump actions/setup-node from 3.6.0 to 3.8.1 #229

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@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
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