Test build workflow

This commit is contained in:
ChrisDill 2023-05-21 21:04:28 +01:00
parent dd092f804e
commit b3e99008e2

View File

@ -0,0 +1,14 @@
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: https://github.com/actions/setup-node@v3
- name: Install node packages
run: npm ci
- name: Build project
run: npm run build