b67bd4c377
* Sample percy test added * Node engine up to 14.x for UI prep * Force ui test rerun * Updated config.yml * Node v upgraded to 14 for docker image * Expect length in test * Running ember tests under percy exec * Percy exec format * Percy cli added * Noop to rerun tests with updated percy_token * Evals full list and details open snapshots * Pretty legit use of assert so disable the warning * Jobs list tests * Snapshots for top-level clients, servers, ACL, topology, and storage lists * Expect caveat for Topology test * Stabilizing tests with faker seeded to 1 * Seed-stabilizing any tests with percySnapshots * Faker import * Drop unused param * Assets and test audit using an older node version * New strategy: avoid seeding, just use percyCSS to hide certain things
25 lines
470 B
YAML
25 lines
470 B
YAML
name: Ember Asset Sizes
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'ui/**'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2-beta
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- uses: backspace/ember-asset-size-action@edit-comment
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
working-directory: "ui"
|