Merge pull request #457 from canove/feature/build-check

🐳 Creating CI process
This commit is contained in:
Cassio Santos
2022-08-19 09:12:16 -03:00
committed by GitHub
4 changed files with 72 additions and 0 deletions

36
.github/build-backend.yaml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Test build backend
on:
pull_request:
paths:
- "backend/**"
push:
branches:
- master
paths:
- "backend/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
working-directory: backend
run: npm install
- run: npm run build
working-directory: backend

36
.github/build-frontend.yaml vendored Normal file
View File

@@ -0,0 +1,36 @@
name: Test build frontend
on:
pull_request:
paths:
- "frontend/**"
push:
branches:
- master
paths:
- "frontend/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
working-directory: frontend
run: npm install
- run: CI=false npm run build
working-directory: frontend