Skip to content

Use explicit .js extensions in ESM imports, drop --experimental-speci… #54

Use explicit .js extensions in ESM imports, drop --experimental-speci…

Use explicit .js extensions in ESM imports, drop --experimental-speci… #54

Workflow file for this run

name: CI test
on:
# Triggers the workflow on push or pull request events
- pull_request
- push
# Allows you to run this workflow manually from the Actions tab
- workflow_dispatch
jobs:
install-and-test:
runs-on: ubuntu-latest
services:
rumors-test-db:
image: elasticsearch:9.2.2
env:
discovery.type: single-node
xpack.security.enabled: 'false'
ports:
- 62223:9200
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test -- --coverage
- name: Update coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}