Skip to content

Commit 43eb921

Browse files
committed
fix: fixed uuid import
1 parent 5cfdd19 commit 43eb921

File tree

5 files changed

+467
-44
lines changed

5 files changed

+467
-44
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
1-
name: "build-test"
2-
on: # rebuild any PRs and main ref changes
3-
pull_request:
4-
push:
5-
branches:
6-
- master
7-
- 'releases/*'
1+
name: "test"
2+
on: ["pull_request", "push"]
83

94
jobs:
105
build:
116
runs-on: ubuntu-latest
127
steps:
138
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
9+
with:
10+
fetch-depth: 2
11+
12+
- name: "Setup node"
13+
uses: actions/setup-node@v1
1514
with:
1615
node-version: 12
17-
- run: |
18-
npm install
19-
npm run all
16+
17+
- name: "Cache dependencies"
18+
uses: actions/cache@v1
19+
with:
20+
key: npm-${{ hashFiles('package-lock.json') }}
21+
path: ~/.npm
22+
restore-keys: |
23+
npm-
24+
25+
- name: "Install dependencies"
26+
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
27+
28+
- run: npm run all
2029

2130
- name: "Send code coverage report to Codecov.io"
22-
uses: codecov/codecov-action@v1
31+
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)