Cannot directly run the sudo_install due to perms #51
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: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denolib/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- run: deno fmt --check . | |
- run: deno lint . | |
- run: deno check ./pkgm.ts |