Merge branch 'master' into develop #170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-CD Core Manifest | |
on: | |
pull_request: | |
branches: [master, develop] | |
push: | |
branches: [master, develop] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Install root dependencies | |
run: npm install | |
- name: Install dependencies (workspaces) | |
run: npm ci --workspaces | |
- name: Build App | |
run: npm run build | |
- name: Run tests | |
run: npm run test |