Skip to content

fix: Use existing importmap for build by passing --map flag #57

fix: Use existing importmap for build by passing --map flag

fix: Use existing importmap for build by passing --map flag #57

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
name: Node.js Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm install
- run: chomp lint
- run: chomp test
deno-test:
name: Deno Tests
runs-on: ubuntu-latest
strategy:
matrix:
deno: ['1']
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup Chomp
uses: guybedford/chomp-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- run: deno test --allow-env --allow-net --allow-read test/deno_test.ts
- run: npm install
- run: chomp deno:test