carbon-components-svelte/.github/workflows/ci.yml
2022-01-08 09:40:31 -08:00

14 lines
340 B
YAML

name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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