Bump typescript from 5.1.6 to 5.2.2 #1926
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: | |
jobs: | |
lint: | |
name: Lint code | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: npm ci | |
- run: npm run lint | |
test-ubuntu: | |
name: Ubuntu test | |
needs: lint | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: npm ci | |
- run: xvfb-run --server-args="-screen 0 1024x768x24" npm run test:coverage | |
- uses: codecov/codecov-action@v1 | |
test-macos: | |
name: macOS test | |
needs: lint | |
runs-on: [macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: npm ci | |
- run: npm run test | |
test-windows: | |
name: Windows test | |
needs: lint | |
runs-on: [windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: npm ci | |
- run: npm run test |