forked from isaacplmann/ngx-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 12
42 lines (41 loc) · 1.09 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
name: Test
on:
push:
branches:
- master
pull_request:
jobs:
master:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v4
name: Checkout [master]
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '>=18.13.0'
- run: yarn
- run: yarn run build:lib
- run: yarn run ci:test
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/@perfectmemory/ngx-contextmenu/lcov.info
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
pr:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '>=18.13.0'
- run: yarn
- run: yarn run build:lib
- run: yarn run ci:test