Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Merge pull request #28 from kisamoto/27-missing_subscription_attributes #57

Merge pull request #28 from kisamoto/27-missing_subscription_attributes

Merge pull request #28 from kisamoto/27-missing_subscription_attributes #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
LEMON_SQUEEZY_API_KEY: ${{ secrets.LEMON_SQUEEZY_API_KEY }}
PNPM_VERSION: 8.5.1
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: Install
run: pnpm install
- name: Build
run: pnpm run build:prod
- name: Test
run: pnpm run test