Skip to content

Merge pull request #635 from cagov/CA-Logo-Update #970

Merge pull request #635 from cagov/CA-Logo-Update

Merge pull request #635 from cagov/CA-Logo-Update #970

Workflow file for this run

# This workflow will do a clean install of repo dependencies and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: NextJS CI
on:
push:
branches: [ main, future, production ]
pull_request:
branches: [ main, future, production ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install, build, test, & lint with Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14
- run: npm install -g yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn typecheck
- run: yarn test
- run: yarn lint