Skip to content

Commit

Permalink
Add test build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Dec 20, 2024
1 parent b3bca4c commit e85fc4a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run test build

on:
# Runs on pull requests targeting the default branch
pull_request:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: npm install
- name: Build
run: npm run build

0 comments on commit e85fc4a

Please sign in to comment.