mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-05 19:46:57 +00:00
* Revert "fix(build): corepackのバグの回避 (#15387)"
This reverts commit 9c70a4e631
.
* deps: update pnpm to v10
* fix broken lockfile
* update changelog
* fix
* fix
* Revert "fix"
This reverts commit 4abc6c194edc20989f5ec97d343307a4b8c9047d.
* fix
* fix
* attempt to fix docker build
* lint fixes
* fix: revertしすぎた
* detect pnpm version and install it
* fix: そもそもpnpmを2回入れる必要がないかも
* fix
* refactor
* fix
* refactor: remove unnecessary arg
* Update Dockerfile
* update pnpm to v10.6.1
* Update Changelog
* chore: use node to avoid installing jq
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
name: api.json validation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
paths:
|
|
- packages/backend/**
|
|
- .github/workflows/validate-api-json.yml
|
|
pull_request:
|
|
paths:
|
|
- packages/backend/**
|
|
- .github/workflows/validate-api-json.yml
|
|
jobs:
|
|
validate-api-json:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [22.11.0]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
with:
|
|
submodules: true
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4.1.0
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4.2.0
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
- name: Install Redocly CLI
|
|
run: npm i -g @redocly/cli
|
|
- run: pnpm i --frozen-lockfile
|
|
- name: Check pnpm-lock.yaml
|
|
run: git diff --exit-code pnpm-lock.yaml
|
|
- name: Copy Configure
|
|
run: cp .config/example.yml .config/default.yml
|
|
- name: Build and generate
|
|
run: pnpm build && pnpm --filter backend generate-api-json
|
|
- name: Validation
|
|
run: npx @redocly/cli lint --extends=minimal ./packages/backend/built/api.json
|