Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Correct lines which break the csv file loading (#13) #9

Correct lines which break the csv file loading (#13)

Correct lines which break the csv file loading (#13) #9

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Deno CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.29.1]
steps:
- uses: actions/checkout@v2
- name: Use Deno ${{ matrix.deno-version }}
uses: denolib/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}
- name: Build Deno Module
run: deno run --allow-read --allow-env --reload src/index.ts