ci: adjust run rules, use cache actions

This commit is contained in:
Eric Liu 2022-02-10 08:20:56 -08:00
commit 55b1789163

View file

@ -1,14 +1,28 @@
name: CI name: CI
on: [pull_request]
on:
pull_request:
push:
branches:
- master
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/cache@v2
id: yarn-cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies and build the library - name: Install dependencies and build the library
run: | run: |
yarn yarn
yarn build:api yarn build:api
yarn build:lib yarn build:lib
- name: Run unit tests and validate TypeScript definitions - name: Run unit tests and validate TypeScript definitions
run: yarn test run: yarn test