Skip to content

Analysis

Analysis #2

Workflow file for this run

name: Analysis
on:
workflow_dispatch:
jobs:
analysis:
name: Analysis
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Cache analysis downloads
uses: actions/cache@v3
with:
path: |
analysis/cache
!analysis/cache/_results.json
key: ${{ runner.os }}-analysis
- name: Install dependencies
run: pnpm install
- name: Run analysis
run: pnpm start
working-directory: analysis
- name: Update gist
run: pnpm gist
working-directory: analysis