Skip to content

Commit

Permalink
Add pull request workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aeifn committed May 14, 2024
1 parent cd4acad commit afee216
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 check

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.10.0

- name: Build
run: |
npm ci
npm run build

0 comments on commit afee216

Please sign in to comment.