-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
42 lines (40 loc) · 923 Bytes
/
client.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
name: Web client CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.3.1]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Install & lint
run: |
cd web/client
yarn install --immutable
yarn lint
- name: Build
run: |
cd web/client
yarn build
- name: Test
run: |
cd web/client
yarn test:unit
# - name: Upload coverage to Codecov
# uses: codecov/[email protected]
# with:
# token: ${{secrets.CODECOV_TOKEN}}
# file: ./client/coverage/coverage-final.json
# flags: unittests
# name: codecov-umbrella