-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.35 KB
/
tests.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
51
52
53
54
55
56
name: Tests
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
integration-tests:
runs-on: ubuntu-latest
env:
CLIENT_ID: ${{secrets.CLIENT_ID}}
CLIENT_SECRET: ${{secrets.CLIENT_SECRET}}
SCOPE: ${{secrets.SCOPE}}
AUTH_URL: ${{secrets.AUTH_URL}}
API_URL: ${{secrets.API_URL}}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
uses: nick-fields/retry@v2
with:
retry_on: error
timeout_minutes: 5
max_attempts: 2
command: yarn
- name: Typecheck
run: yarn typecheck
- name: Run ALL tests
run: yarn test:ci
- name: Verify generated methods are up-to-date
run: |
yarn build
git diff --exit-code
exit $?