-
-
Notifications
You must be signed in to change notification settings - Fork 48
92 lines (88 loc) · 2.35 KB
/
build.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: 'Build & Test'
on:
push:
branches:
- master
- release/**
pull_request:
jobs:
job_build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Pack
run: yarn pack
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: |
${{ github.workspace }}/*.tgz
job_lint:
name: Lint
needs: job_build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Run Linter
run: yarn lint
job_test:
name: Node (${{ matrix.node }}) Unit Tests
needs: job_build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [14, 16, 18, 20, 22]
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Run Unit Tests
run: yarn test
job_e2e_test:
name: ${{ matrix.wizard }} E2E Tests
needs: job_build
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
wizard: [NextJS, Remix, Sveltekit]
env:
SENTRY_TEST_AUTH_TOKEN: ${{ secrets.E2E_TEST_SENTRY_AUTH_TOKEN }}
SENTRY_TEST_ORG: 'sentry-javascript-sdks'
SENTRY_TEST_PROJECT: 'sentry-wizard-e2e-tests'
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 22
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Run End-to-End Tests
run: yarn test:e2e:run ${{ matrix.wizard }}