Skip to content

Bump fsevents from 1.2.9 to 1.2.13 #133

Bump fsevents from 1.2.9 to 1.2.13

Bump fsevents from 1.2.9 to 1.2.13 #133

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches: ["*"]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [12]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run build
run: yarn run build
- name: Run test
run: yarn run test
- name: Run size
run: yarn run size