Skip to content

Update README.md for helpful TS instructions #211

Update README.md for helpful TS instructions

Update README.md for helpful TS instructions #211

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Continuous Integration
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Checking Prettier
run: npm run lint
build:
name: Run Tests
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Run tests
uses: GabrielBB/xvfb-action@v1.4
with:
run: npm test