Skip to content

Bump braces from 3.0.2 to 3.0.3 #91

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #91

Workflow file for this run

name: Continuous integration
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache the node_modules dir
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build-prod
- name: Test
run: yarn test