Skip to content

Merge pull request #186 from dinesh-aot/COMP-298 #312

Merge pull request #186 from dinesh-aot/COMP-298

Merge pull request #186 from dinesh-aot/COMP-298 #312

Workflow file for this run

name: Compliance WEB CI
on:
pull_request:
branches:
- develop
paths:
- "compliance-web/**"
push:
branches:
- develop
defaults:
run:
shell: bash
working-directory: ./compliance-web
jobs:
setup-job:
runs-on: ubuntu-20.04
if: github.repository == 'bcgov/EPIC.compliance'
steps:
- uses: actions/checkout@v2
- run: "true"
linting:
needs: setup-job
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install --legacy-peer-deps
- name: Lint
id: lint
run: |
npm run lint
testing:
needs: setup-job
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install --legacy-peer-deps
- name: Test with Cypress
id: test
run: |
npx cypress run --component --headed --browser chrome
- name: Coverage Report
run: |
npx nyc report --reporter=lcov --reporter=text-summary
build-check:
needs: setup-job
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install --legacy-peer-deps
- name: build to check strictness
id: build
run: |
npm run build --quiet || true