Skip to content

Bump actions/checkout from 4.1.6 to 4.1.7 (#20) #40

Bump actions/checkout from 4.1.6 to 4.1.7 (#20)

Bump actions/checkout from 4.1.6 to 4.1.7 (#20) #40

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