Skip to content

ci: add build & lint:type check #33

ci: add build & lint:type check

ci: add build & lint:type check #33

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
test:
timeout-minutes: 15
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x]
runs-on: ${{ matrix.os }}
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
TURBO_FORCE: ${{ vars.TURBO_FORCE }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install deps
run: |
pnpm i --frozen-lockfile
pnpm playwright install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint:type
- name: Test
run: pnpm test