-
-
Notifications
You must be signed in to change notification settings - Fork 6
25 lines (23 loc) · 709 Bytes
/
test.yml
File metadata and controls
25 lines (23 loc) · 709 Bytes
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
name: Test
on:
push:
branches: [ "**" ]
pull_request:
jobs:
test:
# Only run on PRs if the source branch is on someone else's repo
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v5
with:
node-version: "24"
cache: "pnpm"
- run: pnpm install
- run: pnpm --filter=web run lint
- run: pnpm --filter=web run check
- run: pnpm --filter=web run test
- run: pnpm --filter=web-extension run lint