Skip to content

Update submission-path-3-classically-verifiable-problems.yml #17

Update submission-path-3-classically-verifiable-problems.yml

Update submission-path-3-classically-verifiable-problems.yml #17

Workflow file for this run

name: Continuous Integration
on:
pull_request:
env:
NODE_VERSION: 22
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build