-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
59 lines (50 loc) · 1.58 KB
/
test.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
57
58
59
name: test
on:
push:
paths-ignore:
- 'packages/docs/**'
- 'packages/playground/**'
pull_request:
paths-ignore:
- 'packages/docs/**'
- 'packages/playground/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.5.0
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: 'BrowserStack Env Setup'
uses: 'browserstack/github-actions/setup-env@master'
# forks do not have access to secrets so just skip this
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
username: ${{ secrets.BROWSERSTACK_USERNAME }}
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- run: pnpm install
- run: pnpm run lint
- run: pnpm run -r test:types
- run: pnpm run -r test:unit
- run: pnpm run -r build
- run: pnpm run -r build:dts
- run: pnpm run -r test:dts
# e2e tests that that run locally
- run: pnpm run -r test:e2e:ci
- uses: codecov/codecov-action@v2
# - name: 'Start BrowserStackLocal Tunnel'
# uses: 'browserstack/github-actions/setup-local@master'
# with:
# local-testing: 'start'
# local-logging-level: 'all-logs'
# local-identifier: 'random'
# - run: pnpm run -r test:e2e:bs-test
# - name: 'Stop BrowserStackLocal'
# uses: 'browserstack/github-actions/setup-local@master'
# with:
# local-testing: 'stop'