chore(deps): π€ Replace npm-run-all
with npm-run-all2 5.0.0
#140
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: release | |
on: | |
push: | |
branches: [master] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: setup cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: install | |
run: pnpm install --frozen-lockfile | |
- name: validate | |
run: pnpm validate | |
- name: build | |
run: pnpm build | |
- name: e2e | |
run: pnpm e2e | |
- name: codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage/lcov.info | |
- name: Publish to NPM | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |