Skip to content

Parameterize coalescence of data by month #33

Parameterize coalescence of data by month

Parameterize coalescence of data by month #33

name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Cache pnpm store
uses: actions/cache@v3
with:
path: |
~/.pnpm-store
node_modules
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install deps
run: pnpm install
- name: tsc
uses: icrawl/action-tsc@v1
- name: lint # We use quite to ignore all warnings, we only care about failures here
run: pnpm eslint