Merge pull request #6 from FormulaMonks/refactor/simplify-kurt-result #13
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: ci | |
on: | |
workflow_dispatch: # allow manual trigger | |
pull_request: # on pull request changes | |
push: | |
branches: [main] # on commits to the main branch | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to publish releases | |
issues: write # to comment on released issues | |
pull-requests: write # to comment on released PRs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: { node-version: 20.x } | |
- run: npm install -g pnpm@9 | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run -r test | |
- run: pnpm run -r build | |
# - run: pnpm run -r release | |
# env: | |
# GITHUB_TOKEN: ${{ github.token }} | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |