Skip to content

Bump the npm_and_yarn group across 2 directories with 24 updates #101

Bump the npm_and_yarn group across 2 directories with 24 updates

Bump the npm_and_yarn group across 2 directories with 24 updates #101

Workflow file for this run

name: πŸ§ͺ Build on Pull Request
on: pull_request
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: πŸ”¨ Set up Node 16.17.0
uses: actions/setup-node@v2
with:
node-version: 16.17.0
- name: πŸ›  Compile and Test Backend
run: |
cd server
npm ci
npm run lint
npm run build
npm run test:build
cd ..
- name: ⛏ Build Frontend
run: |
cd client
npm ci
npm run lint
npm run build
cd ..