-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (60 loc) · 1.39 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
name: Test
on:
push:
branches:
- main
- develop
- feature/*
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
- name: Setup repo
run: npm i
- 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
- name: Setup repo
run: npm i
- 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
- name: Setup repo
run: npm i
- name: Build all files to check types
run: npm run build:dev
- 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