Skip to content

Commit

Permalink
Merge pull request #4 from UniMagic-VRC/feat/pr-test
Browse files Browse the repository at this point in the history
PRにビルドが通るかのテストを追加
  • Loading branch information
o-tr authored Oct 20, 2024
2 parents 84938d1 + fc7e41e commit 26d7e08
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr_test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test Build

on:
pull_request:
branches:
- master

jobs:
build:
name: Test Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm

- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build

0 comments on commit 26d7e08

Please sign in to comment.