Skip to content

Commit

Permalink
fix: fixed uuid import
Browse files Browse the repository at this point in the history
  • Loading branch information
prisis committed May 14, 2020
1 parent 5cfdd19 commit 43eb921
Show file tree
Hide file tree
Showing 5 changed files with 467 additions and 44 deletions.
33 changes: 21 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
name: "build-test"
on: # rebuild any PRs and main ref changes
pull_request:
push:
branches:
- master
- 'releases/*'
name: "test"
on: ["pull_request", "push"]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
fetch-depth: 2

- name: "Setup node"
uses: actions/setup-node@v1
with:
node-version: 12
- run: |
npm install
npm run all

- name: "Cache dependencies"
uses: actions/cache@v1
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
restore-keys: |
npm-
- name: "Install dependencies"
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline

- run: npm run all

- name: "Send code coverage report to Codecov.io"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v1
Loading

0 comments on commit 43eb921

Please sign in to comment.