Skip to content

Bump actions/checkout from 4.1.2 to 4.1.6 in the github-actions group across 1 directory #450

Bump actions/checkout from 4.1.2 to 4.1.6 in the github-actions group across 1 directory

Bump actions/checkout from 4.1.2 to 4.1.6 in the github-actions group across 1 directory #450

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 20
steps:
- name: Check out repo
uses: actions/checkout@v4.1.6
- name: Install node
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test