chore(deps): update github actions (major) #172
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
- stable | |
pull_request: | |
jobs: | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Deno fmt | |
run: deno fmt --check | |
testing: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Cache deno | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | |
with: | |
key: ${{ runner.os }}-deno-${{ hashFiles('deps.ts') }} | |
restore-keys: ${{ runner.os }}-deno- | |
path: | | |
/home/runner/.deno | |
/home/runner/.cache/deno | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Deno test | |
env: | |
TOKEN: ${{ secrets.BOT_TOKEN }} | |
BOT_ID: ${{ secrets.BOT_ID }} | |
run: deno test -A |