Skip to content

docs: add to-do comment to Files utility namespace #21

docs: add to-do comment to Files utility namespace

docs: add to-do comment to Files utility namespace #21

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Compile TypeScript
run: npx tsc --skipLibCheck
- name: Run tests
run: npm test -s