Skip to content

Update typescript-eslint monorepo to v8 #4827

Update typescript-eslint monorepo to v8

Update typescript-eslint monorepo to v8 #4827

Workflow file for this run

name: CI
on: [push]
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run test:lint
- run: npm run test:types
- run: npm run test:unit
Expo:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: expo/expo-github-action@v5
with:
expo-version: 4.x
expo-cache: true
- run: npm ci
- run: expo diagnostics
- run: expo doctor
- run: node expo-test.js