Skip to content

Commit

Permalink
Merge pull request #24 from archiewood/sweep/add_test_build
Browse files Browse the repository at this point in the history
  • Loading branch information
archiewood authored May 18, 2024
2 parents fc80f53 + b724632 commit 7668896
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run sources
- run: npm run build

0 comments on commit 7668896

Please sign in to comment.