mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
14 lines
327 B
YAML
14 lines
327 B
YAML
name: CI
|
|
on: [push, 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: Validate TypeScript definitions
|
|
run: yarn test
|