Skip to content

Bump github.com/webx-top/com from 1.3.19 to 1.3.28 #2499

Bump github.com/webx-top/com from 1.3.19 to 1.3.28

Bump github.com/webx-top/com from 1.3.19 to 1.3.28 #2499

Workflow file for this run

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