From 9d0cb86a1027dcef3c5fd36cb55861a61d441ae8 Mon Sep 17 00:00:00 2001 From: Richard Walker Date: Mon, 27 Nov 2023 13:29:29 +1300 Subject: [PATCH] chore: cleanup after PR merges --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 2 +- .gitignore | 1 + package.json | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7dd1f25..489e56c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x - name: npm install run: | npm install @@ -38,7 +38,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x - name: npm install run: | npm install diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6b30c5..1a82f29 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - node-version: [lts/-1, lts/*] + node-version: [lts/-2, lts/-1, lts/*] steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.gitignore b/.gitignore index fd1f749..671a52f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ coverage/ node_modules/ *.log .vscode +.tap \ No newline at end of file diff --git a/package.json b/package.json index 3c35cce..5032d83 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "lib" ], "scripts": { - "test": "tap --no-check-coverage", + "test": "tap --disable-coverage --allow-empty-coverage", "test:coverage": "tap", "lint": "eslint .", "lint:fix": "eslint . --fix"