-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: update workflow * ci: fix browser run * ci: add name to test job
- Loading branch information
Showing
1 changed file
with
89 additions
and
40 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 |
---|---|---|
|
@@ -8,81 +8,130 @@ on: | |
paths-ignore: | ||
- docs/** | ||
- '*.md' | ||
|
||
jobs: | ||
browsers: | ||
dependency-review: | ||
name: Dependency Review | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Test | ||
run: npm run test:browser | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Dependency review | ||
uses: actions/dependency-review-action@v2 | ||
|
||
lint: | ||
name: Lint Code | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install Dependencies | ||
run: npm install --ignore-scripts | ||
- name: Lint | ||
node-version: lts/* | ||
|
||
- name: Install dependencies | ||
run: npm i --ignore-scripts | ||
|
||
- name: Lint code | ||
run: npm run lint | ||
|
||
browsers: | ||
name: Test Browsers | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
|
||
- name: Run tests | ||
run: npm run test:browser | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
strategy: | ||
matrix: | ||
node-version: | ||
- 6 | ||
- 8 | ||
- 10 | ||
- 11 | ||
- 12 | ||
- 13 | ||
- 14 | ||
- 15 | ||
- 16 | ||
- 18 | ||
node-version: [6, 8, 10, 11, 12, 13, 14, 15, 16, 18] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Upgrade npm | ||
if: ${{ success() && matrix.node-version == '6' }} | ||
run: npm i [email protected] -g | ||
- name: Install Dependencies | ||
run: npm install --ignore-scripts | ||
- name: Test | ||
|
||
- name: Install dependencies | ||
run: npm i --ignore-scripts | ||
|
||
- name: Run tests | ||
run: npm run test:unit | ||
|
||
typescript: | ||
name: Test TypeScript | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install Dependencies | ||
run: npm install --ignore-scripts | ||
node-version: lts/* | ||
|
||
- name: Install dependencies | ||
run: npm i --ignore-scripts | ||
|
||
- name: tsd | ||
run: npm run test:typescript | ||
|
||
automerge: | ||
needs: | ||
- lint | ||
- browsers | ||
- test | ||
- typescript | ||
runs-on: ubuntu-latest | ||
name: Automerge Dependabot PRs | ||
if: > | ||
github.event_name == 'pull_request' && | ||
github.event.pull_request.user.login == 'dependabot[bot]' | ||
needs: [browsers, lint, test, typescript] | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: fastify/github-action-merge-dependabot@v3 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
target: major |