Update README.md #78
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
| # For more information see: https://github.com/denoland/setup-deno | |
| name: deno_lint | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Deno | |
| # uses: denoland/setup-deno@v1 | |
| uses: denoland/setup-deno@9db7f66e8e16b5699a514448ce994936c63f0d54 | |
| with: | |
| deno-version: v1.x | |
| - name: Install Deno CLI | |
| run: npm install -g deno | |
| - name: Run linter | |
| run: deno lint | |
| - name: Run Deno tests | |
| run: npm run test-deno |