Skip to content

Bump actions/checkout from 1 to 5 #207

Bump actions/checkout from 1 to 5

Bump actions/checkout from 1 to 5 #207

Workflow file for this run

name: Node CI
on: [push, pull_request]
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/controlling-permissions-for-github_token
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci --ignore-scripts
npm run build --if-present
npm test
env:
CI: true