WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

config: New collection with authentication solutions #126

config: New collection with authentication solutions

config: New collection with authentication solutions #126

name: Verify Collection Configs
on:
pull_request_target:
paths:
- 'configs/collections/**'
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: packages/cli
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: true
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Verify Collection Configs
run: pnpm run cli:collection:verify
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
GITHUB_ACCESS_TOKENS: ${{ secrets.GITHUB_TOKEN }}