feat!: convert to SvelteKit one-pager redirecting to ecosystem surfaces #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| uses: nyuchi/.github/.github/workflows/reusable-lint.yml@main | |
| with: | |
| # .svelte is excluded — formatting it needs prettier-plugin-svelte, | |
| # which the org's reusable-lint workflow does not install. Svelte | |
| # files stay locally-formattable; CI lints the rest. | |
| prettier-glob: "**/*.{md,mdx,json,jsonc,ts,css,mjs}" |