ci: remove compressed-size-action

This commit is contained in:
Thomas Osmonson
2020-07-09 09:41:52 -05:00
committed by Thomas Osmonson
parent f657dba2d5
commit ce0d5b5196

View File

@@ -1,29 +0,0 @@
name: Compressed Size
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set Node Version
uses: actions/setup-node@v1.4.2
with:
node-version: 12.16.1
- name: Restore lerna cache
id: lerna-cache
uses: actions/cache@v2
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install monorepo deps
run: yarn --frozen-lockfile
if: steps.lerna-cache.outputs.cache-hit != 'true'
- uses: preactjs/compressed-size-action@v2
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
build-script: 'lerna run build --stream --scope @blockstack/connect'
pattern: '**/connect/dist/**/*.js'