Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Bump braces from 3.0.2 to 3.0.3 in /cdk #96

Bump braces from 3.0.2 to 3.0.3 in /cdk

Bump braces from 3.0.2 to 3.0.3 in /cdk #96

Workflow file for this run

name: Build
on: [push, workflow_dispatch]
jobs:
Build-and-Test-CDK:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- run: |
npm ci
npm run build
npm run test
working-directory: ./cdk
Build-and-Test-Backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- run: |
npm ci
npm run build
working-directory: ./backend
Build-and-Test-Frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "16.x"
- run: |
npm ci
npm run build
working-directory: ./frontend