Skip to content

Commit

Permalink
feat: add validation scripts + github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschuck committed Oct 22, 2024
1 parent 6f167a7 commit 6949dac
Show file tree
Hide file tree
Showing 1,001 changed files with 169,132 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Public deployment

on:
push:
branches:
- main
workflow_dispatch:

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4

- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'pnpm'

- name: Install dependencies
run: pnpm i

- name: Validate vocab links
run: pnpm run validate:vocab-links

- name: Validate JSON-LD
run: pnpm run validate:jsonld
17 changes: 17 additions & 0 deletions node_modules/.bin/glob

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

116 changes: 116 additions & 0 deletions node_modules/.modules.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

105 changes: 105 additions & 0 deletions [email protected]/node_modules/@digitalbazaar/http-client/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6949dac

Please sign in to comment.