-
Notifications
You must be signed in to change notification settings - Fork 708
50 lines (37 loc) · 1.34 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Main workflow
on:
push:
branches:
- main
pull_request:
# cancel in-progress runs on new commits to same PR (gitub.event.number)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
checks:
timeout-minutes: 20
env:
DATABASE_URL: postgres://
AUTH_SECRET: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }} # HEAD commit instead of merge commit
- uses: ./.github/actions/ci-setup
- uses: actions/cache@v3
with:
path: |
./node_modules/.cache/prettier/.prettier-cache
./node_modules/.cache/eslint/.eslint-cache
key: checks-${{ github.sha }}
restore-keys: checks-
- run: echo ===SHA USED=== ${{ github.event.pull_request.head.sha || github.sha }} # todo: remove after check whats happening on main
- run: pnpm prettier --cache --check "**/*.{js,md,ts,tsx}"
- run: pnpm eslint . --ext .ts,.tsx --max-warnings 0 --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslint-cache
- run: pnpm -r build
- run: pnpm -r size-test
- run: pnpm -r checks