Add use case share and embed (#115) #329
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: Check Web Client | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Run install | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install | |
- name: Run Lint | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: lint | |
dir: "apps/ikigai" | |
- name: Run Build | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: build | |
dir: "apps/ikigai" |