Skip to content

versions: three 0.155, typescript: 5.1.6 #220

versions: three 0.155, typescript: 5.1.6

versions: three 0.155, typescript: 5.1.6 #220

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Check quality with ESLint
run: yarn lint
- name: Check type compilation with TypeScript
run: yarn type-check
- name: Run tests with Jest
run: yarn test