Skip to content

Commit

Permalink
Merge pull request #16 from pyconau/phall/pr-build
Browse files Browse the repository at this point in the history
Add PR build workflow
  • Loading branch information
urcheraus authored Jun 4, 2024
2 parents 39b31c2 + 41c5eb4 commit 2e5fe07
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PR build
on: pull_request

jobs:
pr_build:
name: PR build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.2.0"
- uses: pnpm/[email protected]
with:
version: 9.1.4
- run: pnpm install
- run: pnpm build

0 comments on commit 2e5fe07

Please sign in to comment.