Skip to content

GHA: Bump actions/checkout from 4.2.0 to 4.2.1 #656

GHA: Bump actions/checkout from 4.2.0 to 4.2.1

GHA: Bump actions/checkout from 4.2.0 to 4.2.1 #656

Workflow file for this run

name: ci
on: pull_request
jobs:
build:
name: Build
strategy:
matrix:
node-version: [20]
runs-on: ubuntu-latest
steps:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
id: node
- name: Check out the code
uses: actions/[email protected]
- name: Get dependencies
run: |
npm ci
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build