Skip to content

Merge pull request #175 from yosupo06/patch/vite #222

Merge pull request #175 from yosupo06/patch/vite

Merge pull request #175 from yosupo06/patch/vite #222

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: yosupo06/library-checker-judge
path: library-checker-judge
- uses: actions/setup-node@v2
with:
node-version: "18"
- name: Run npm ci
run: |
npm ci
- name: Generate protoc
run: npx protoc --ts_out src/api/ --proto_path ./library-checker-judge/api/proto ./library-checker-judge/api/proto/library_checker.proto
- name: Prettier
run: |
npm run prettier:check
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build