Skip to content

SXCRM-547 student deprecation page updates #688

SXCRM-547 student deprecation page updates

SXCRM-547 student deprecation page updates #688

Workflow file for this run

name: Test PRs
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, test
run: |
yarn install --frozen-lockfile
yarn run lint
yarn run test:coverage -w 1 --silent
env:
CI: true
FONTAWESOME_TOKEN: ${{ secrets.FONTAWESOME_TOKEN }}
GITHUB_NPM_TOKEN: ${{ secrets.GH_NPM_TOKEN }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_REGION: ${{ secrets.AWS_REGION }}
- name: report code coverage
run: npx codecov@3
if: matrix.node-version == '14.x'
env:
CI: true
FONTAWESOME_TOKEN: not-actually-used-but-necessary-here
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_NPM_TOKEN: not-actually-used-but-necessary-here