Skip to content

feat(user-feedback): RS feedback implementations #138

feat(user-feedback): RS feedback implementations

feat(user-feedback): RS feedback implementations #138

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run `deno lint` and `deno test`.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
node-version: [ 20.x ]
deno-version: [ vx.x.x ]
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Setup repo
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: Cache dependencies
run: deno task cache
- name: Build node and browser bundles
run: deno task build
- name: Verify formatting
run: deno task check
- name: Run linter
run: deno task lint
- name: Run tests
run: deno task test