-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (39 loc) · 930 Bytes
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
env:
CI: true
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Check out branch
uses: actions/checkout@v3
- name: Setup environment and dependencies
uses: ./.github/actions/setup
test_integration:
name: Test Integration
runs-on: ubuntu-latest
needs: [Setup]
steps:
- name: Check out branch
uses: actions/checkout@v3
- name: Setup environment and dependencies
uses: ./.github/actions/setup
- name: Run Build
run: pnpm run build:lib
env:
BUILD: production
DEBUG: false
- run: pnpm run test:integration
env:
CI: true
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-results
path: playwright/__test__/test-results/
retention-days: 30