feat: base interface implementation for react package #69
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: "ci / test" | |
on: | |
push: | |
branches: | |
- main # runs on push to master, add more branches if you use them | |
pull_request: | |
branches: | |
- '**' # runs on update to pull request on any branch | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
- run: yarn install --immutable | |
- run: yarn run lint | |
- run: yarn run build | |
- run: yarn run test:unit |