This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
[EX-563] Remove useWebRTC hook #61
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: Lint & Types | |
on: | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.12.0 | |
cache: 'yarn' | |
- name: Install node dependencies | |
run: yarn | |
- name: Install dependencies for example | |
run: yarn | |
working-directory: ./example | |
- name: Install dependencies for example tests | |
run: yarn | |
working-directory: ./example/webdriverio-test | |
- name: Check types | |
run: yarn typecheck | |
- name: Lint | |
run: yarn lint:check | |
- name: Lint Example | |
run: yarn lint:check | |
working-directory: ./example | |
- name: Prettier | |
run: yarn format:check | |
- name: Prettier Example | |
run: yarn format:check | |
working-directory: ./example | |
- name: Build | |
run: EXPO_NONINTERACTIVE=true yarn build | |
- name: Build plugin | |
run: EXPO_NONINTERACTIVE=true yarn build plugin |