Skip to content

fix: Update .gitignore (#265) #532

fix: Update .gitignore (#265)

fix: Update .gitignore (#265) #532

Workflow file for this run

# Copyright 2025 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: e2e
on:
pull_request:
branches:
- main
pull_request_review:
types: [submitted]
push:
branches:
- main
schedule:
- cron: "0 12 * * *"
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: >-
github.event_name == 'schedule' ||
(github.event_name == 'push' &&
!contains(github.event.head_commit.message, 'chore: update dist folder')) ||
(github.event_name == 'pull_request_review' &&
github.event.review.state == 'approved')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
lfs: true
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-e2e
restore-keys: |
${{ runner.os }}-node-e2e
- run: npm install
- run: npm ci --quiet --no-fund --no-audit # Comment out flags to see logs.
env:
# https://playwright.dev/docs/installation/#skip-browser-downloads
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- run: npm run build-all
- run: npx playwright install-deps
- run: npx playwright install
- run: npx playwright test
env:
CI: true
- name: Push test report to artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Results
path: test-results/