Skip to content

Merge pull request #32 from jacobwgillespie/dependabot/github_actions… #95

Merge pull request #32 from jacobwgillespie/dependabot/github_actions…

Merge pull request #32 from jacobwgillespie/dependabot/github_actions… #95

Workflow file for this run

name: CI
on: push
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: '14'
- uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-pnpm-
- uses: pnpm/[email protected]
with:
version: 6.9.1
- run: pnpm install --frozen-lockfile
- run: pnpm fmt:check
- run: pnpm build