Feature/update rn and dependencies #128
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 | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
env: | |
NODE_VERSION: 16 | |
jobs: | |
lint: | |
name: Run linters | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install yarn cache | |
uses: c-hive/gha-yarn-cache@v2 | |
- name: Install root packages | |
run: yarn install | |
- name: Install example packages | |
run: yarn example | |
- name: Run linter | |
run: yarn lint --max-warnings 0 | |
- name: Check typescript | |
run: yarn typescript |