Skip to content

Merge pull request #128 from mnfst/127-the-filter-by-relations-syntax… #28

Merge pull request #128 from mnfst/127-the-filter-by-relations-syntax…

Merge pull request #128 from mnfst/127-the-filter-by-relations-syntax… #28

Workflow file for this run

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