This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
bump(deps): update dependency husky to v9 #984
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: | |
pull_request: | |
branches: [main] | |
merge_group: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: corepack enable pnpm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build | |
lint_prettier: | |
name: Lint [prettier] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: corepack enable pnpm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm prettier --check . | |
lint_eslint: | |
name: Lint [eslint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: corepack enable pnpm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm turbo run lint | |
test_plan: | |
name: Test [plan] | |
runs-on: ubuntu-latest | |
outputs: | |
packages: ${{ steps.plan.outputs.packages }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: corepack enable pnpm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
# this step is only required in this repo because the cli source is not yet built | |
- run: pnpm turbo run build --filter=@stickyjs/turbo | |
- id: plan | |
run: | | |
echo 'packages<<EOF' >> $GITHUB_OUTPUT | |
pnpm sticky-turbo plan test >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
test_run: | |
name: Test [run] | |
runs-on: ubuntu-latest | |
needs: test_plan | |
strategy: | |
fail-fast: false | |
matrix: | |
package: ${{ fromJSON(needs.test_plan.outputs.packages) }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: corepack enable pnpm | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm turbo run test --concurrency=1 --filter=${{ matrix.package }} -- --coverage --forceExit | |
- uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 | |
test_completed: | |
name: Test [completed] | |
runs-on: ubuntu-latest | |
needs: test_run | |
if: always() | |
steps: | |
- run: | | |
if ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }} ; then | |
exit 1 | |
fi |