Skip to content

Commit

Permalink
chore: add build testing to CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FRSgit committed Jun 6, 2024
1 parent f2e615b commit 1353a84
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,16 @@ jobs:
cache: pnpm
- run: pnpm install
- run: pnpm run test

build:
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' && github.event_name != 'push' }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install
- run: pnpm build

0 comments on commit 1353a84

Please sign in to comment.