Skip to content

chore: map npm package links to npmx.dev and fix lint errors #57

chore: map npm package links to npmx.dev and fix lint errors

chore: map npm package links to npmx.dev and fix lint errors #57

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
merge_group:
jobs:
Job:
name: Node.js
uses: node-modules/github-actions/.github/workflows/node-test.yml@master
with:
version: '18, 20, 22, 24'
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Job-Node16:
name: Node.js 16
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout Git Source
uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v4
with:
node-version: 16
check-latest: true
- name: Install Dependencies
run: npm i --no-package-lock --no-fund
- name: Build
run: npm run prepublishOnly
- name: Run Test
run: npx egg-bin cov
- name: Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}