Skip to content

WIP: feat: add cap challenge type #86

WIP: feat: add cap challenge type

WIP: feat: add cap challenge type #86

Workflow file for this run

name: JS
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v7
- name: Set up NodeJS
uses: actions/setup-node@v6
with:
node-version: '24'
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: npm ci
- name: Lint
working-directory: web
run: npm run lint
- name: Test
working-directory: web
run: npm run test --if-present
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v7
- name: Set up NodeJS
uses: actions/setup-node@v6
with:
node-version: '24'
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: npm ci
- name: Build
working-directory: web
run: npm run build