Skip to content

Commit

Permalink
Add development test
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Dec 20, 2023
1 parent 352c53c commit 52210e3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/devbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build development

on:
workflow_dispatch:
push:
branches: ["development"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout master branch
uses: actions/checkout@v3
with:
ref: master

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"

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

0 comments on commit 52210e3

Please sign in to comment.