Skip to content

[CI] yml engineering run tests that isolate current deno.json depende… #1

[CI] yml engineering run tests that isolate current deno.json depende…

[CI] yml engineering run tests that isolate current deno.json depende… #1

Workflow file for this run

name: @nats-io/kv release

Check failure on line 1 in .github/workflows/kv.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/kv.yml

Invalid workflow file

You have an error in your yaml syntax
on:
push:
paths:
- 'kv/**'
tags: [ 'kv/*' ]
branches:
- '*'
jobs:
test:
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
runs-on: ubuntu-latest-4-cores
environment: CI
strategy:
matrix:
deno-version: [1.44.4]
steps:
- name: Git Checkout Kv
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Use Deno Version ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: Lint Deno Module
working-directory: kv
run: |
deno fmt --check
deno lint
- name: Test Deno Module
working-directory: kv
env:
TMPDIR: ${{ runner.temp }}
CI: true
NGS_CI_USER: ${{ secrets.NGS_CI_USER }}
run: |
deno task test