From 88e18b5fb6d904f2d11329aebd143392567621f0 Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Mon, 23 Oct 2023 18:24:42 +1100 Subject: [PATCH] Update the GitHub Actions CI workflow triggers. --- .github/workflows/ci.yml | 2 +- changelog.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66c1e4d..144187c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ name: CI -on: [push, pull_request] +on: [push, workflow_dispatch] jobs: test: name: Test with Node.js v${{ matrix.node }} and ${{ matrix.os }} diff --git a/changelog.md b/changelog.md index fbe6b5b..3ef778f 100644 --- a/changelog.md +++ b/changelog.md @@ -67,6 +67,8 @@ - Check TypeScript types via a new package `types` script. - Removed the [`jsdoc-md`](https://npm.im/jsdoc-md) dev dependency and the related package scripts, replacing the readme “API” section with a manually written “Exports” section. - Updated GitHub Actions CI config: + - The workflow no longer triggers on pull request, but still does on push. + - The workflow can now be manually triggered. - Run tests with Node.js v18, v20, v21. - Updated `actions/checkout` to v4. - Updated `actions/setup-node` to v3.