mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 02:55:02 +03:00
ce4c9fced5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
547 B
YAML
25 lines
547 B
YAML
name: Tracker CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- 'tracker/**'
|
|
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 15
|
|
runs-on: buildjet-4vcpu-ubuntu-2004
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
- name: Install dependencies
|
|
run: npm --prefix ./tracker ci
|
|
- name: Install Playwright Browsers
|
|
working-directory: ./tracker
|
|
run: npx playwright install --with-deps
|
|
- name: Run Playwright tests
|
|
run: npm --prefix ./tracker test
|