Skip to content

Support The Trivia API #12

Support The Trivia API

Support The Trivia API #12

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
name: Lint, Format, Typecheck, Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn workspace cirquiz lint
- name: Format check
run: yarn workspace cirquiz format:check
- name: Typecheck
run: yarn workspace cirquiz typecheck
- name: Test
run: yarn workspace cirquiz test --ci