chore(deps): update typescript-eslint monorepo to v7 #9020
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: Verseghy CI | |
on: [push] | |
jobs: | |
testall: | |
name: Lint, Build, Test, E2E | |
strategy: | |
matrix: | |
node: [12] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Setup dependencies | |
run: yarn | |
#- name: Lint | |
# run: yarn nx affected:lint --base=origin/master | |
- name: Format | |
run: yarn nx format:check --base=origin/master | |
- name: Build | |
run: yarn affected:build --prod --no-progress --base=origin/master | |
- name: Test | |
run: yarn affected:test --no-progress --base=origin/master | |
#- name: Webdriver Manager Update | |
# run: ./node_modules/.bin/webdriver-manager update | |
#- name: E2E | |
# run: yarn nx affected:e2e --prod --base=origin/master |