Skip to content

Commit

Permalink
Add size-limit GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
ziir committed Aug 26, 2020
1 parent 0014f95 commit 419403a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/size.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "size"
on:
pull_request:
branches: [ master ]

jobs:
size:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Using Node.js 10
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install
run: npm ci
- uses: andresz1/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
skip_step: install

0 comments on commit 419403a

Please sign in to comment.