mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-04 22:22:28 +00:00
26 lines
411 B
YAML
26 lines
411 B
YAML
name: Ci/CD
|
|
|
|
on:
|
|
push:
|
|
branches: "**"
|
|
|
|
jobs:
|
|
compile:
|
|
name: "Compile sheet"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup npm
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Install npm packages
|
|
run: npm install
|
|
|
|
- name: Build test sheet
|
|
run: npm run build
|
|
|