build(deps-dev): bump typescript from 5.3.3 to 5.4.2 #4
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: CD | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
- run: pnpm install --ignore-scripts | |
- run: pnpm run lint | |
- run: pnpm run tsc | |
tests: | |
needs: linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
- run: pnpm install --ignore-scripts | |
- run: pnpm run test | |
release: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
- run: pnpm install --ignore-scripts | |
- run: pnpm run build | |
- run: pnpx semantic-release | |
env: | |
GH_TOKEN: ${{ secrets.BY_CLASS_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.BY_CLASS_NPM_TOKEN }} |