Skip to content

ci(release): fixes various issues from releasing 0.0.1 #7

ci(release): fixes various issues from releasing 0.0.1

ci(release): fixes various issues from releasing 0.0.1 #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- release/v*
- main
- alpha
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm test
compile:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18.x", "20.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Script Runner
uses: ./.github/composite-workflows/pnpm-script-base
with:
node-version: ${{ matrix.node-version }}
- run: pnpm run compile