Skip to content

Bump braces from 3.0.2 to 3.0.3 #94

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #94

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn --frozen--lockfile
- name: Run linters
run: yarn prettier:check
- name: Run tests
run: yarn test