🪪 Auth #40
Workflow file for this run
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: | |
build: | |
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 dependencies | |
run: npm ci | |
working-directory: ./packages/core/manifest | |
# Enure that we are using the latest version of the types package (even if it is not published yet). | |
- name: Link local types | |
run: npm run link-local-types | |
working-directory: ./packages/core/manifest | |
- name: Build App | |
run: npm run build | |
working-directory: ./packages/core/manifest | |
- name: Run tests | |
run: npm run test:ci | |
working-directory: ./packages/core/manifest | |
- name: Run End-to-End tests | |
run: npm run test:e2e:ci | |
working-directory: ./packages/core/manifest |