Skip to content

chore: upload original snapshots of diff #653

chore: upload original snapshots of diff

chore: upload original snapshots of diff #653

Workflow file for this run

name: build
on:
push:
paths-ignore:
- '**/*.md'
concurrency:
group: ${{github.workflow}}-${{github.event_name}}-${{github.ref}}
cancel-in-progress: true
jobs:
lint-and-build-g6:
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: |
brew update
brew install python-setuptools pkg-config cairo pango libpng jpeg giflib librsvg
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Run CI
run: |
npm run ci
- name: Run Playwright tests
run: |
pnpm exec playwright install chromium
pnpm exec playwright test
- name: Collect unit test results
if: always()
run: |
node scripts/coverage.mjs
- name: Upload blob report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: report
path: |
artifact
playwright-report
retention-days: 1
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}