diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml new file mode 100644 index 0000000..37f907c --- /dev/null +++ b/.github/workflows/pr-check.yml @@ -0,0 +1,17 @@ +name: Pull request check + +on: + pull_request + +jobs: + build-vite-check: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Install 🔧 + run: npm ci + + - name: Build 🔧 + run: npm run build