Skip to content

Only show no-undef errors for templates in gts files #2656

Only show no-undef errors for templates in gts files

Only show no-undef errors for templates in gts files #2656

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ ubuntu, windows ]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile --non-interactive
- run: yarn lint
- run: yarn update && git diff --exit-code
- run: yarn test:coverage --runInBand
- run: yarn add --dev eslint@7 && yarn test --runInBand