chore: .well-known/discord #10
This file contains 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: ci | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v1.0.0 | |
with: | |
deno-version: v1.x | |
#- run: deno fmt | |
#- uses: EndBug/add-and-commit@v7 | |
# with: | |
# message: 'ci: formatting changes' | |
- run: deno lint | |
- run: deno task generate-sitemap | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
message: 'ci: generated sitemap.xml' |