Skip to content

Commit

Permalink
add github workflow for pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusmolchany committed Apr 15, 2022
1 parent 4396d11 commit d8facf5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Pull Request

on: pull_request

jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "16.x"
registry-url: "https://npm.pkg.github.com"
scope: "@marcusmolchany"
- run: yarn
- run: yarn test:types

0 comments on commit d8facf5

Please sign in to comment.