LocalVideoCapability の表示用 state の更新を追加する #342
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 | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- "feature/*" | |
paths-ignore: | |
- "**.md" | |
- "LICENSE" | |
- "releases/*" | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm biome --version | |
- run: pnpm run lint | |
- run: pnpm run test | |
- run: pnpm run build | |
- name: Slack Notification | |
if: failure() | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: sora-devtools | |
SLACK_COLOR: danger | |
SLACK_TITLE: Failure test | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |