2020-05-14 17:45:36 +00:00
|
|
|
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
|
2021-11-06 00:33:40 +00:00
|
|
|
uses: actions/setup-node@v2
|
2020-05-14 17:45:36 +00:00
|
|
|
with:
|
2021-11-06 00:33:40 +00:00
|
|
|
node-version: '12'
|
2020-05-14 17:45:36 +00:00
|
|
|
- uses: backspace/ember-asset-size-action@edit-comment
|
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
working-directory: "ui"
|