Skip to content

1.3.1

1.3.1 #9

Workflow file for this run

name: build
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: cache .npm
uses: actions/cache@v2
env:
cache-name: npm
with:
path: ~/.npm
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- name: Build Size Check
run: npm run size-check