Skip to content

Commit

Permalink
Add license to subpackage (#100)
Browse files Browse the repository at this point in the history
* Add license to subpackage

* Install deps in ci test and remove audit step
  • Loading branch information
renesy authored Oct 23, 2023
1 parent 6e289a4 commit 494b33c
Show file tree
Hide file tree
Showing 3 changed files with 690 additions and 13 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: npm i
- name: Init Lerna
run: npm run init
# - name: Generate keys
# run: npm run keys:generate
Expand All @@ -45,18 +47,18 @@ jobs:
with:
path: ./*
key: ${{ github.sha }}
audit:
name: Audit package dependencies
runs-on: ubuntu-latest
needs: [build-install]
steps:
- uses: actions/checkout@v2
- name: Setup app dependencies
uses: actions/setup-node@v1
with:
node-version: ${{ needs.build-install.outputs.matrix.node-version }}
- name: Audit package dependencies
run: npm audit --audit-level=critical
# audit:
# name: Audit package dependencies
# runs-on: ubuntu-latest
# needs: [build-install]
# steps:
# - uses: actions/checkout@v2
# - name: Setup app dependencies
# uses: actions/setup-node@v1
# with:
# node-version: ${{ needs.build-install.outputs.matrix.node-version }}
# - name: Audit package dependencies
# run: npm audit --audit-level=critical
test:
name: Run unit tests
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 494b33c

Please sign in to comment.