Skip to content

CI

CI #32

Workflow file for this run

name: CI
on:
push:
paths:
- '.github/workflows/**'
- 'src/**'
- 'test/**'
- 'types/**'
- 'package.json'
- 'pnpm-lock.yaml'
pull_request:
paths:
- '.github/workflows/**'
- 'src/**'
- 'test/**'
- 'types/**'
- 'package.json'
- 'pnpm-lock.yaml'
workflow_dispatch:
jobs:
default:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ['lts/*', '*']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2.0.1
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile --strict-peer-dependencies
- name: Lint Source
run: pnpm run --if-present lint
- name: Build Source
run: pnpm run --if-present build
- name: Run Tests
run: pnpm run --if-present test
env:
BANDCAMP_CLIENT_ID: ${{ secrets.BANDCAMP_CLIENT_ID }}
BANDCAMP_CLIENT_SECRET: ${{ secrets.BANDCAMP_CLIENT_SECRET }}
BANDCAMP_PACKAGE_IDS: ${{ secrets.BANDCAMP_PACKAGE_IDS }}