Skip to content

Bump actions/checkout from 3 to 4 #19

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch: # Allows the workflow to be triggered manually
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['14', 'lts/*', 'latest'] # 14 is the oldest supported Node.js version
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test