Skip to content

chore(workflows): update actions/checkout action to v4.1.6 #1336

chore(workflows): update actions/checkout action to v4.1.6

chore(workflows): update actions/checkout action to v4.1.6 #1336

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [16, 18, 20]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: ${{ matrix.node_version }}
- name: npm install
uses: bahmutov/npm-install@0a424fea8730e1589f423ab6a7d886f047679aa9 # v1.8.35
- name: test
run: npm test
- name: lint
run: npm run lint