docs: update readme for background call handling on ios (#170) #264
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: Test | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.npm | |
~/.config/yarn/global | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Yarn | |
run: | | |
npm install -g yarn | |
yarn | |
- name: Typescript | |
run: yarn typescript | |
- name: ESLint | |
run: yarn lint | |
- name: Run Tests | |
run: yarn test --passWithNoTests | |
- name: Validate docs | |
run: yarn build-docs --treatWarningsAsErrors |