-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (69 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
69
70
71
name: Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
types: [opened, reopened, synchronize]
jobs:
linting:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'npm'
- name: Setup repo
run: npm ci
- name: Linting
run: npm run lint
- name: Types
run: npm run lint:types
- name: Dependencies
run: npm run lint:dependencies
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'npm'
- name: Setup repo
run: npm ci
- name: Jest
run: npm run test
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'npm'
- name: Setup repo
run: npm ci
- name: Build all files to check types (dev)
run: npm run build:dev
- name: Build all files to check types (prod)
run: npm run build:prod
- name: Generate bundle stats
run: npm run build:stats
- name: Upload packaged files
uses: actions/upload-artifact@v2
with:
name: Bundle statistics
path: |
core/editor/stats.html
core/client/stats.html