Bump github.com/webx-top/com from 1.3.19 to 1.3.28 #2499
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
name: Deno | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.deno | |
~/.cache/deno | |
key: ${{ runner.os }}-deno-${{ hashFiles('**/deps.ts') }}-${{ hashFiles('**/import_map.json') }} | |
- name: Setup Deno | |
uses: denoland/[email protected] | |
with: | |
deno-version: v1.32.1 | |
- run: deno task cache | |
- name: Run linter | |
run: deno lint | |
- name: Run tests | |
run: deno task test | |
- name: Run check | |
run: deno task check |