chore(deps-dev): bump the dev group with 8 updates #143
Workflow file for this run
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 | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test (Node ${{ matrix.node }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
node: [18, 20, 22] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Build | |
run: pnpm run build | |
- name: Run test | |
run: pnpm run test | |
check: | |
name: Code check (${{ matrix.script }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
script: ['lint', 'format'] | |
include: | |
- needsBuild: true | |
script: 'lint' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Build | |
if: ${{ matrix.needsBuild }} | |
run: pnpm build | |
- name: Run ${{ matrix.script }} | |
run: pnpm run ${{ matrix.script }} | |
ci-ok: | |
name: CI OK | |
runs-on: ubuntu-latest | |
if: always() | |
needs: [test, check] | |
env: | |
FAILURE: ${{ contains(join(needs.*.result, ','), 'failure') }} | |
steps: | |
- name: Check for failure | |
run: | | |
echo $FAILURE | |
if [ "$FAILURE" = "false" ]; then | |
exit 0 | |
else | |
exit 1 | |
fi |