Skip to content

WIP most datatypes are working #399

WIP most datatypes are working

WIP most datatypes are working #399

Workflow file for this run

name: linting
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Check formatting
run: deno fmt --check
- name: Run linting
run: deno lint
- name: Attempt building
run: deno task build