carbon-components-svelte/.github/workflows/ci.yml
metonym 4a197fdb7f
ci: adjust run rules, use cache actions (#1081)
- adjust run rules to run on any pull request or a push to `master`
- use action to cache install folder to speed up builds
- run `build:api` and `build:lib` in parallel
2022-02-10 08:28:07 -08:00

27 lines
550 B
YAML

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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
run: |
yarn
yarn build:api & yarn build:lib
- name: Run unit tests and validate TypeScript definitions
run: yarn test