Merge pull request #1871 from react-auth-kit/snyk-upgrade-d57071a9912… #1043
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
name: 'CI' | |
on: | |
push: | |
branches: '**' | |
pull_request: | |
branches: '**' | |
permissions: | |
contents: read | |
jobs: | |
check-commit: | |
name: Check Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check Commit Messages | |
uses: wagoid/commitlint-github-action@v6 | |
build: | |
name: Test on Node.js v${{ matrix.node-version }} on ${{ matrix.os }} | |
needs: | |
- check-commit | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: true | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
- name: List all changed files | |
run: | | |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do | |
echo "$file was changed" | |
done | |
if: matrix.os != 'windows-latest' | |
- name: Check changes | |
id: changed-ignored | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
**.md | |
examples/** | |
.github/** | |
.husky/** | |
.idea/** | |
.nx/** | |
.vscode/** | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
if: steps.changed-ignored.outputs.only_modified == 'false' | |
- name: NPM Install | |
run: npm ci | |
if: steps.changed-ignored.outputs.only_modified == 'false' | |
- name: NPM Build | |
run: npm run build | |
if: steps.changed-ignored.outputs.only_modified == 'false' | |
- name: NPM Test | |
run: npm test | |
if: steps.changed-ignored.outputs.only_modified == 'false' | |
- name: Coverage Report to codecov | |
uses: codecov/codecov-action@v5 | |
if: steps.changed-ignored.outputs.only_modified == 'false' | |
with: | |
flags: unittests # optional | |
files: ./packages/**/coverage/*.xml | |
token: ${{ secrets.CODECOV_TOKEN }} # required |