chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 #293
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: Build | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
build: | |
name: Validate build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install pnpm | |
shell: bash | |
run: npm i -g pnpm@8 | |
- name: Turn on auto-install-peers | |
shell: bash | |
run: pnpm config set auto-install-peers true | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: pnpm i | |
- name: Prettier check | |
run: pnpm prettier | |
- name: Lint the code | |
run: pnpm lint | |
- name: Run the test suite | |
run: pnpm test | |
- name: Build the code | |
run: pnpm build | |
- name: Monitor coverage | |
uses: slavcodev/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
clover_file: .coverage/clover.xml | |
threshold_alert: 50 | |
threshold_warning: 60 | |
# - name: Publish Code Coverage | |
# run: pnpx codecov | |
- name: Build the documentation | |
run: pnpm run docs |