Bump actions/stale from 8 to 9 #48
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: Deno CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
verify: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Verify formatting | |
working-directory: ./deno | |
run: deno fmt --check . | |
- name: Run linter | |
working-directory: ./deno | |
run: deno lint . | |
- name: Run tests | |
working-directory: ./deno | |
run: deno test -A --unstable --coverage=cov_profile | |
- name: Print coverage | |
working-directory: ./deno | |
run: deno coverage cov_profile |