Skip to content

Commit

Permalink
ci: run GitHub Actions when PR activity occurs
Browse files Browse the repository at this point in the history
  • Loading branch information
skzwksk committed Dec 25, 2024
1 parent af72989 commit b3c7083
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: pull-request

on:
pull_request:
branches:
- "master"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "12.x"
registry-url: "https://npm.pkg.github.com"
- run: yarn
- run: yarn pull:google-proto
- run: yarn test
- run: yarn build

0 comments on commit b3c7083

Please sign in to comment.