2021-06-17 18:48:19 +02:00
|
|
|
name: 'Build'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-08-26 16:29:20 +02:00
|
|
|
branches: [master, develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
pull_request:
|
2022-08-26 16:29:20 +02:00
|
|
|
branches: [master, develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2022-04-06 23:52:50 +02:00
|
|
|
- uses: 'actions/checkout@v3.0.0'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- name: 'Use Node.js'
|
2022-04-06 23:52:50 +02:00
|
|
|
uses: 'actions/setup-node@v3.1.0'
|
2021-06-17 18:48:19 +02:00
|
|
|
with:
|
2022-02-19 17:18:13 +01:00
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- name: 'Install'
|
2022-02-19 17:18:13 +01:00
|
|
|
run: 'npm install'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- name: 'Build Package'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
|
|
|
- name: 'Build Example'
|
2022-02-19 17:18:13 +01:00
|
|
|
run: 'cd example && npm install && npm run build'
|