Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

fix: resolve regression with uploading files introduced by #216 #377

fix: resolve regression with uploading files introduced by #216

fix: resolve regression with uploading files introduced by #216 #377

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- next
- rc
- next-rc-1
workflow_dispatch:
jobs:
test:
name: Test / OS ${{ matrix.os }} / Node ${{ matrix.node }}
strategy:
matrix:
os: [ubuntu-latest]
node: ['20']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Ensure build works
run: |
npm ci
npm run build
- name: Run tests
run: |
npm t
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./test/coverage/lcov.info