1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/.github/workflows/build.yml

29 lines
563 B
YAML
Raw Normal View History

2021-06-17 18:48:19 +02:00
name: 'Build'
on:
push:
branches: [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:
2023-05-13 17:00:31 +02:00
- uses: 'actions/checkout@v3.5.2'
2021-06-17 18:48:19 +02:00
2023-05-13 17:00:31 +02:00
- name: 'Setup Node.js'
2023-01-10 21:23:32 +01:00
uses: 'actions/setup-node@v3.6.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
2023-05-13 17:00:31 +02:00
- name: 'Install dependencies'
run: 'npm clean-install'
2021-06-17 18:48:19 +02:00
- name: 'Build Package'
run: 'npm run build'
- name: 'Build Example'
2023-05-13 17:00:31 +02:00
run: 'cd example && npm clean-install && npm run build'