Skip to content

chore: add public repository url to package.json files (#453) #1280

chore: add public repository url to package.json files (#453)

chore: add public repository url to package.json files (#453) #1280

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PUPPETEER_SKIP_DOWNLOAD: true
jobs:
build-libs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm ci
- run: npm run test
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run E2E tests
run: npm run test:e2e
- run: npm run build
- run: npm run prettier:check
- run: npm run lint:lib
- name: verify clean build
run: git diff --exit-code
# Upload Playwright report on failure
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: ./libraries/ui-library/playwright-report/
retention-days: 30