Skip to content

updated checkout version #107

updated checkout version

updated checkout version #107

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
- '!master'
- '!develop'
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install node
uses: actions/setup-node@v1
with:
node-version: 14.15.5
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build Court Dashboard
run: yarn build
- name: Run BundleWatch
run: yarn bundlewatch
env:
CI: true
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}