Build #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
run-name: Build | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install the dependencies | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: Lint | |
run: yarn lint | |
- name: Build Library | |
run: yarn build-lib | |
- name: Build Demo | |
run: yarn build-demo |