kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
41 wiersze
804 B
YAML
41 wiersze
804 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test Node.js ${{ matrix.node-version }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
node-version:
|
|
- 18
|
|
- 22
|
|
- 23
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10.6.3
|
|
run_install: false
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile --strict-peer-dependencies
|
|
|
|
- name: Run build
|
|
run: pnpm build
|
|
|
|
- name: Run test
|
|
run: pnpm test
|