Moved POM @pages\shopParameters\search
from Core
#160
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: Lint And Typescript Checks | |
on: | |
pull_request: | |
env: | |
NODE_VERSION: '16' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: ESLint | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright/ | |
key: ${{ runner.os }}-browsers | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install dependencies in UI tests directory | |
run: npm ci | |
- name: Check eslint errors | |
run: npm run lint | |
tscheck: | |
runs-on: ubuntu-latest | |
name: TypeScript Check | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Cache Playwright browsers | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/ms-playwright/ | |
key: ${{ runner.os }}-browsers | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install dependencies in UI tests directory | |
run: npm ci | |
- name: Check TypeScript errors | |
run: npx tsc --strict |