-
-
Notifications
You must be signed in to change notification settings - Fork 265
36 lines (36 loc) · 987 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Build and lint
on:
push:
branches:
- main
pull_request:
jobs:
build-lint:
name: Build and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# This is a workaround for: https://github.com/actions/setup-node/issues/899
- name: Enable Corepack before setting up Node
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 21
cache: "pnpm"
- name: Install deps
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: pnpm install
- name: Format
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Build the workers package
working-directory: packages/workers
run: pnpm typecheck
- name: Build web app
working-directory: packages/web
run: pnpm run build
- name: Build the browser extension
working-directory: packages/browser-extension
run: pnpm build