mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
26 lines
434 B
YAML
26 lines
434 B
YAML
name: 'Build'
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [master, develop]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v2.5.1'
|
|
with:
|
|
node-version: '16.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Build'
|
|
run: 'npm run build'
|