From 3e2cb1c19ec80cef28316aa882a0f515b7afcad9 Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 3 Jan 2024 10:57:37 -0500 Subject: [PATCH] remove node 14 support --- .github/workflows/app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/app.yml b/.github/workflows/app.yml index 8a9f340..bfaf957 100644 --- a/.github/workflows/app.yml +++ b/.github/workflows/app.yml @@ -2,9 +2,9 @@ name: app on: push: - branches: [ main, 'feature/**' ] + branches: [main, "feature/**"] pull_request: - branches: [ main, 'feature/**' ] + branches: [main, "feature/**"] workflow_dispatch: jobs: @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v3