PFCF-418 and PFCF-419: Adding functionality to support the affidavit general and the electronic filing statement form pathways #280
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: APP (Vue) | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
working-directory: ./web | |
codeCov-token: ${{ secrets.CodeCov }} | |
strategy: | |
matrix: | |
node-version: [12.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
working-directory: ${{env.working-directory}} | |
- run: npm run build --if-present | |
working-directory: ${{env.working-directory}} |