Skip to content

Commit

Permalink
add actions for PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Manabu McCloskey <[email protected]>
  • Loading branch information
nabuskey committed Jul 18, 2024
1 parent d328b69 commit baaed6a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PR

on:
pull_request:
types: [opened, ready_for_review, synchronize]

jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Run tests
run: |
yarn install --frozen-lockfile --network-timeout 600000
yarn tsc

0 comments on commit baaed6a

Please sign in to comment.