Skip to content

chore(deps): update actions/checkout action to v4.1.3 #38

chore(deps): update actions/checkout action to v4.1.3

chore(deps): update actions/checkout action to v4.1.3 #38

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['lts/*', 'current']
steps:
- name: Checkout Repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup Node.js (${{ matrix.node-version }})
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test