-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
ad37d78
commit f8aaa65
Showing
2 changed files
with
48 additions
and
9 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 |
---|---|---|
@@ -1,18 +1,57 @@ | ||
on: | ||
push: | ||
branches: | ||
- current | ||
- next | ||
- 'v*' | ||
pull_request: | ||
|
||
name: CI | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: v20.x | ||
- name: Install dependencies | ||
run: npm install | ||
- name: Check linting | ||
run: npm run lint:ci | ||
|
||
tests: | ||
needs: [lint] | ||
name: Tests | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node: [16.x, 18.x, 20.x] | ||
name: Node ${{ matrix.node }} | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
node-version: [18.x, 20.x, 21.x] | ||
runs-on: ${{matrix.os}} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup node | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: npm install | ||
- run: npm run test:ci | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- uses: actions/cache@v3 | ||
id: check-cache | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ matrix.node-version }}- | ||
- name: Install Dependencies | ||
run: npm install | ||
- name: Run Tests | ||
run: npm run test:ci | ||
|
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