.github
workflows
ci.yml
update.yml
validate.yml
PULL_REQUEST_TEMPLATE.md
dependabot.yml
dist
src
.editorconfig
.envrc
.eslintrc.json
.gitignore
.prettierignore
LICENSE
README.md
action.yml
flake.lock
flake.nix
package.json
pnpm-lock.yaml
prettier.config.cjs
shell.nix
tsconfig.json
tsup.config.ts
21 lines
417 B
YAML
21 lines
417 B
YAML
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Validate YAML
|
|
uses: nwisbeta/validate-yaml-schema@v2.0.0
|
|
with:
|
|
yamlSchemasJson: |
|
|
{
|
|
"https://json.schemastore.org/github-action.json": ["action.yml"]
|
|
}
|