Track 210 - Add new editing permissions to Status and Issues tabs. #1790
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: EPIC TRACK WEB CI | |
on: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- "epictrack-web/**" | |
push: | |
branches: | |
- develop | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./epictrack-web | |
jobs: | |
setup-job: | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'bcgov/EPIC.track' | |
steps: | |
- uses: actions/checkout@v2 | |
- run: "true" | |
linting: | |
needs: setup-job | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [14.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 | |
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 | |
# # Set codecov branch name with prefix if pull request | |
# - name: Sets Codecov branch name | |
# run: | | |
# echo "CODECOV_BRANCH=PR_${{github.head_ref}}" >> $GITHUB_ENV | |
# if: github.event_name == 'pull_request' | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# flags: epictrackweb | |
# name: codecov-epictrack-web | |
# fail_ci_if_error: true | |
# verbose: true | |
# override_branch: ${{env.CODECOV_BRANCH}} | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
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 |