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

name: "Build"
2021-06-17 18:48:19 +02:00
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"
2021-06-17 18:48:19 +02:00
steps:
2023-12-26 22:24:32 +01:00
- uses: "actions/checkout@v4.1.1"
2021-06-17 18:48:19 +02:00
- name: "Setup Node.js"
2023-12-26 22:24:32 +01:00
uses: "actions/setup-node@v4.0.1"
2021-06-17 18:48:19 +02:00
with:
node-version: "lts/*"
cache: "npm"
2021-06-17 18:48:19 +02:00
- name: "Install dependencies"
run: "npm clean-install"
2021-06-17 18:48:19 +02:00
- name: "Build Package"
run: "npm run build"
2021-06-17 18:48:19 +02:00
- name: "Build Example"
run: "cd example && npm clean-install && npm run build"