Skip to content

Add post release workflow #8

Add post release workflow

Add post release workflow #8

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Verify PR changes
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches: ['main']
jobs:
verify-pr:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [20.x, 22.x]
package: [use-long-press, use-double-tap, react-interval-hook]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: 'true'
fetch-depth: '0'
- name: Enable Corepack
run: corepack enable
- name: Install Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
run: yarn install --immutable
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Lint all packages
run: yarn lint
- name: Type check all packages
run: yarn typecheck
- name: Test all packages with coverage
run: yarn test:coverage
- name: Report coverage for ${{ matrix.package }}
uses: davelosert/vitest-coverage-report-action@4921c44721dd660c957e91843f00e1f837ab4375
with:
name: ${{ matrix.package }} coverage report
working-directory: packages/${{ matrix.package }}
json-summary-path: ../../coverage/packages/${{ matrix.package }}/coverage-summary.json
json-final-path: ../../coverage/packages/${{ matrix.package }}/coverage-final.json
report-status:
name: Report PR verification status
runs-on: ubuntu-latest
needs: verify-pr
if: always() # Ensures it runs even if a matrix job fails
steps:
- name: Determine overall status
run: |
if [[ "${{ needs.verify-pr.result }}" == "success" ]]; then
echo "All matrix jobs passed ✅"
exit 0
else
echo "Some matrix jobs failed ❌"
exit 1
fi
outputs:
status: ${{ job.status }}