Skip to content

feat(templates): add verify-prefill template #728

feat(templates): add verify-prefill template

feat(templates): add verify-prefill template #728

Workflow file for this run

name: Node CI
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14, 16]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# - name: Cache node modules
# uses: actions/cache@v1
# with:
# path: node_modules
# key: ${{ matrix.os }}-${{ matrix.node-version }}-build-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ matrix.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-
# ${{ matrix.os }}-${{ matrix.node-version }}-build-
# ${{ matrix.os }}-${{ matrix.node-version }}-
# - name: Cache Cypress
# uses: actions/cache@v1
# with:
# path: /home/runner/.cache/Cypress
# key: ${{ matrix.os }}-${{ matrix.node-version }}-cypress-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ matrix.os }}-${{ matrix.node-version }}-cypress-${{ env.cache-name }}-
# ${{ matrix.os }}-${{ matrix.node-version }}-cypress-
# ${{ matrix.os }}-${{ matrix.node-version }}-
- name: install npm v8
run: |
npm install -g npm@8
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
- name: check formatting
if: always()
run: npm run format:check
env:
CI: true
NODE_ENV: test
- name: lint
if: always()
run: npm run lint
env:
CI: true