Skip to content

Migrate from TSLint to ESLint #2069

Migrate from TSLint to ESLint

Migrate from TSLint to ESLint #2069

Workflow file for this run

# The purpose of this workflow file is to make sure the app
# builds successfully as well as to check whether it passes
# the linter and the tests
name: Setup Builds and Tests
on:
push:
branches: [master, release]
pull_request:
branches: [master, release]
jobs:
linux-setup-and-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js"
macos-setup-and-tests:
runs-on: macos-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js" || npm test -- "--karma-config=./tests/karma.ci.conf.js"
# retry tests once, in case they timed out on Mac OS
windows-setup-and-tests:
runs-on: windows-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm update
- run: npm run lint
- run: npm test -- "--karma-config=./tests/karma.ci.conf.js"