From c6daa302be9193c001ffd87aae3a0952f77594c1 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Thu, 22 Jun 2023 09:23:18 +0200 Subject: [PATCH] Fix testing ci --- .github/workflows/test.yml | 5 +++-- CHANGELOG.md | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be1228f..1bc9833 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,5 +23,6 @@ jobs: - run: npm run format:check - run: npm run lint - run: npm run package - # FIXME Token doesn't get passed correctly - # - run: npm run test + - run: npm run test + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e4a35a..59f6763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - If `fs.renameSync` fails (e.g. because source and destination files are on different partitions), try `fs.copySync` and `fs.unlinkSync` instead (#14). +## Fixed + +- Re-enable npm run test in CI (#15). + ## [1.3.0] - 2023-05-19 ## Changed