Skip to content

Rework nav layout and gamify updates/tools UI (#109) #225

Rework nav layout and gamify updates/tools UI (#109)

Rework nav layout and gamify updates/tools UI (#109) #225

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install
run: npm ci
- name: Format
run: npm run format
- name: Lint
run: npm run lint
- name: Test (coverage)
run: npm test
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage
if-no-files-found: warn