-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): check for valid licenses (#1150)
- Loading branch information
1 parent
a87f44b
commit ab99731
Showing
5 changed files
with
2,555 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,22 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
e2e: | ||
license-check: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
- name: Setup Volta | ||
uses: volta-cli/[email protected] | ||
- name: Node.js version | ||
run: node -v | ||
- name: npm version | ||
run: npm -v | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: License check | ||
run: npm run license-check | ||
tests: | ||
strategy: | ||
matrix: | ||
os: | ||
|
@@ -34,7 +49,7 @@ jobs: | |
run: npm run lint | ||
- name: Run tests | ||
run: npm run test | ||
cov: | ||
coverage: | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: read | ||
|
Oops, something went wrong.