-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (51 loc) · 1.2 KB
/
build.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build
on:
push:
paths-ignore:
- "**/README.md"
pull_request:
paths-ignore:
- "**/README.md"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: |
npm i pnpm -g
pnpm i
- name: lint
run: |
pnpm run lint:code
pnpm run lint:styles
pnpm run lint:types
- name: unit testing
run: |
pnpm run test:unit:ci
- name: unit test coverage report
uses: actions/upload-artifact@v3
with:
name: coverage
path: ./coverage
if-no-files-found: error
- name: build
run: |
pnpm run build
- name: build artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: ./build
if-no-files-found: error