POC-900: Unable to post lab for children <2yrs who have sero converte… #1384
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: Ng2-amrs CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.x, 10.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Cache node modules | |
uses: actions/cache@v1 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm i | |
- name: Install brfs | |
run: npm i -g brfs | |
- name: Linting | |
run: npm run lint | |
- name: Prettier check | |
run: npm run prettier:check | |
- name: Build prod | |
run: npm run build-prod | |
- name: Delete all existing artifacts (if any) | |
run: gh api repos/${{ github.repository }}/actions/artifacts | jq -r '.artifacts[].id' | xargs -I {} gh api -X DELETE repos/${{ github.repository }}/actions/artifacts/{} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload build files to artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-files-${{ github.run_id }}-${{ github.run_attempt }} | |
path: dist | |
retention-days: 7 | |
# - name: Run headless tests | |
# uses: GabrielBB/xvfb-action@v1 | |
# with: | |
# run: npm run test |