update documentation #463
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Performance | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build-time: | |
name: Build Time Performance | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
- name: Installation | |
run: npm install | |
- name: Build (cold cache) | |
run: npm run build | |
timeout-minutes: 5 | |
- name: Build (warm cache) | |
run: npm run build | |
timeout-minutes: 2 |