initialize Jam V2

Co-authored-by: theborakompanioni <theborakompanioni+github@gmail.com>
This commit is contained in:
Nischal Shetty 2025-06-20 01:19:54 +05:30 committed by GitHub
parent 92bf282aa7
commit ee5ea32379
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
311 changed files with 11146 additions and 52111 deletions

View file

@ -28,9 +28,22 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# Install
- name: Install
run: npm ci
- name: Get installed Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
- name: Cache Playwright
uses: actions/cache@v3
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- run: npx playwright install --with-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
- run: npx playwright install-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
# Checks
- name: Lint
run: npm run lint