carbon-components-svelte/.github/workflows/ci.yml
2022-04-02 16:51:01 -07:00

24 lines
464 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:lib
yarn test:types