Skip to content

Mention that import.meta.dirname is built-in now (#7) #27

Mention that import.meta.dirname is built-in now (#7)

Mention that import.meta.dirname is built-in now (#7) #27

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 21
- 20
- 18
- 16
- 14
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run Tests
run: |
npm run test