-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a55a6d
commit aff7507
Showing
2 changed files
with
76 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: ✨ Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- "**" | ||
- "!main" | ||
|
||
jobs: | ||
test-node20: | ||
name: Run tests using node 20 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Test | ||
run: yarn ci:install && yarn ci:test | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.PAT }} | ||
|
||
test-node18: | ||
name: Run tests using node 18 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Test | ||
run: yarn ci:install && yarn ci:test | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.PAT }} | ||
|
||
test-node16: | ||
name: Run tests using node 16 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Test | ||
run: yarn ci:install && yarn ci:test | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.PAT }} | ||
|
||
test-node14: | ||
name: Run tests using node 14 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
|
||
- name: Test | ||
run: yarn ci:install && yarn ci:test | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.PAT }} |
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