Skip to content

JM001: Initial Commit #5

JM001: Initial Commit

JM001: Initial Commit #5

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: ["**"]
workflow_dispatch:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint and build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build