From 82c1862ce3ea58a4358917e79dafdfd9526884ad Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Mon, 16 Aug 2021 08:03:35 -0500 Subject: [PATCH 1/2] Update Ubuntu Version The app will run on Ubuntu 20.04. Updated CI to test on this distro. --- .github/workflows/node.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6dc339e..4176648 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: matrix: From c50711b29338a9c9ee71190b3d4e321af5749281 Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Mon, 16 Aug 2021 08:06:18 -0500 Subject: [PATCH 2/2] Updated to run on pull requests. CI should now run on all future pull requests and direct pushes to the main branch --- .github/workflows/node.js.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4176648..9a3691c 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -4,10 +4,14 @@ name: Node.js CI on: + # Trigger the workflow on push or pull request, + # but only for the main branch push: - branches: [ main ] + branches: + - main pull_request: - branches: [ main ] + branches: + - main jobs: build: