chore(deps): bump cross-spawn from 7.0.3 to 7.0.5 #95
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: Change | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Shared Setup | |
uses: ./.github/actions/setup | |
- name: Run lint | |
run: npm run lint | |
- name: Run format | |
run: npm run format:check | |
test: | |
runs-on: ubuntu-latest | |
needs: analyze | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Shared Setup | |
uses: ./.github/actions/setup | |
- name: Run tests | |
run: npm run test:coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
bench: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Shared Setup | |
uses: ./.github/actions/setup | |
- name: Run Benchmarks | |
uses: CodSpeedHQ/action@v2 | |
with: | |
run: npm run bench | |
token: ${{ secrets.CODSPEED_TOKEN }} |