Skip to content

🆙 action: Bump actions/checkout from 3.5.3 to 4.1.0 #231

🆙 action: Bump actions/checkout from 3.5.3 to 4.1.0

🆙 action: Bump actions/checkout from 3.5.3 to 4.1.0 #231

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@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
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