Skip to content

Bump actions/checkout from 4.1.7 to 4.2.0 #44

Bump actions/checkout from 4.1.7 to 4.2.0

Bump actions/checkout from 4.1.7 to 4.2.0 #44

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Node.js 18.17.0
uses: actions/[email protected]
with:
node-version: 18.17.0
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
- name: Run tests
run: npm run test