Bump the npm_and_yarn group across 2 directories with 7 updates #125
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.17.1' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn lint | |
- name: Library typecheck | |
run: yarn type-check | |
- name: Build | |
run: yarn build | |
- name: Build Development | |
run: yarn build:development | |
- name: Test | |
run: yarn test | |
- name: Install dependencies | |
working-directory: examples/ | |
run: yarn --frozen-lockfile | |
- name: Build examples | |
working-directory: examples/ | |
run: yarn build |