-
Notifications
You must be signed in to change notification settings - Fork 236
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
Showing
1 changed file
with
33 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 |
---|---|---|
|
@@ -18,50 +18,74 @@ concurrency: | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | ||
|
||
env: | ||
NODE_VERSION: 18 | ||
CACHE_KEY: "${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}" | ||
|
||
jobs: | ||
configure: | ||
name: Configure Build Matrix | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.ref }} | ||
|
||
- id: set-matrix | ||
run: echo "matrix=$(jq -c . < ./.github/workflows/matrix.json)" >> $GITHUB_OUTPUT | ||
|
||
build: | ||
needs: configure | ||
|
||
name: Build Package | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: ${{ fromJson(needs.configure.outputs.matrix) }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/actions/build | ||
with: | ||
node: ${{ env.NODE_VERSION }} | ||
node: ${{ matrix.node }} | ||
|
||
- name: Save build artifacts | ||
uses: actions/cache/save@v3 | ||
with: | ||
path: . | ||
key: ${{ env.CACHE_KEY }} | ||
key: ${{ matrix.node }}-${{ env.CACHE_KEY }} | ||
|
||
unit: | ||
needs: build # Require build to complete before running tests | ||
needs: [configure, build] # Require build to complete before running tests | ||
|
||
name: Run Unit Tests | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: ${{ fromJson(needs.configure.outputs.matrix) }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
node-version: ${{ matrix.node }} | ||
cache: npm | ||
|
||
- uses: actions/cache/restore@v3 | ||
with: | ||
path: . | ||
key: ${{ env.CACHE_KEY }} | ||
key: ${{ matrix.node }}-${{ env.CACHE_KEY }} | ||
|
||
- run: npm run test:ci | ||
|
||
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # [email protected] | ||
# only upload coverage on one node version | ||
- if: matrix.node == 18 | ||
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # [email protected] | ||
|
||
lint: | ||
needs: build # Require build to complete before running tests | ||
|
@@ -74,12 +98,12 @@ jobs: | |
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
node-version: ${{ matrix.node }} | ||
cache: npm | ||
|
||
- uses: actions/cache/restore@v3 | ||
with: | ||
path: . | ||
key: ${{ env.CACHE_KEY }} | ||
key: ${{ matrix.node }}-${{ env.CACHE_KEY }} | ||
|
||
- run: npm run lint |