v1.23.3 #31
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: Checks | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
types: [ opened, synchronize, unlabeled ] | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.husky/**' | |
- '.vscode/**' | |
- 'deploy/**' | |
- 'docs/**' | |
- 'public/**' | |
- 'stub/**' | |
- 'tools/**' | |
# concurrency: | |
# group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }} | |
# cancel-in-progress: true | |
jobs: | |
code_quality: | |
name: Code quality | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip checks') && !(github.event.action == 'unlabeled' && github.event.label.name != 'skip checks') }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: 'yarn' | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: | | |
node_modules | |
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile --ignore-optional | |
- name: Run ESLint | |
run: yarn lint:eslint | |
- name: Compile TypeScript | |
run: yarn lint:tsc | |
envs_validation: | |
name: ENV variables validation | |
runs-on: ubuntu-latest | |
needs: [ code_quality ] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: 'yarn' | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: | | |
node_modules | |
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile --ignore-optional | |
- name: Install script dependencies | |
run: cd ./deploy/tools/envs-validator && yarn --frozen-lockfile --ignore-optional | |
- name: Run validation tests | |
run: | | |
set +e | |
cd ./deploy/tools/envs-validator && yarn test | |
exitcode="$?" | |
echo "exitcode=$exitcode" >> $GITHUB_OUTPUT | |
exit "$exitcode" | |
jest_tests: | |
name: Jest tests | |
needs: [ code_quality, envs_validation ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: 'yarn' | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: | | |
node_modules | |
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile --ignore-optional | |
- name: Run Jest | |
run: yarn test:jest | |
pw_tests: | |
name: 'Playwright tests / Project: ${{ matrix.project }}' | |
needs: [ code_quality, envs_validation ] | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.41.1-focal | |
strategy: | |
fail-fast: false | |
matrix: | |
project: [ default, mobile, dark-color-mode ] | |
steps: | |
- name: Install git-lfs | |
run: apt-get update && apt-get install git-lfs | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
lfs: 'true' | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11.0 | |
cache: 'yarn' | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: cache-node-modules | |
with: | |
path: | | |
node_modules | |
key: node_modules-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile --ignore-optional | |
- name: Run PlayWright | |
run: yarn test:pw:ci | |
env: | |
HOME: /root | |
PW_PROJECT: ${{ matrix.project }} | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: playwright-report-${{ matrix.project }} | |
path: playwright-report | |
retention-days: 10 |