mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-08-08 00:10:29 +08:00
22 lines
396 B
YAML
22 lines
396 B
YAML
name: Validate Skills
|
|
|
|
on:
|
|
pull_request:
|
|
paths: ['skills/**']
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run validate:skills -- --changed --base=origin/${{ github.base_ref }}
|