Skip to content

Commit

Permalink
chore: remove EOL node versions from CI (#247)
Browse files Browse the repository at this point in the history
* chore: remove eol node versions from CI
  • Loading branch information
r4mmer authored and msbrogli committed Aug 4, 2023
1 parent e6d0440 commit ab7be9f
Show file tree
Hide file tree
Showing 5 changed files with 21,409 additions and 12,619 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js 14.x
uses: actions/setup-node@v1
# https://github.com/actions/checkout/releases/tag/v3.5.3
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Set up Node.js 18.x
# https://github.com/actions/setup-node/releases/tag/v3.7.0
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
with:
node-version: 14.x
node-version: 18.x
- name: Cache node modules
uses: actions/cache@v2
# https://github.com/actions/cache/releases/tag/v3.3.1
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
env:
cache-name: cache-node-modules
with:
Expand All @@ -42,9 +45,11 @@ jobs:
needs: dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# https://github.com/actions/checkout/releases/tag/v3.5.3
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Download node modules
uses: actions/download-artifact@v2
# https://github.com/actions/download-artifact/releases/tag/v3.0.2
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
with:
name: node_modules
- name: Build
Expand All @@ -64,9 +69,11 @@ jobs:
needs: dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# https://github.com/actions/checkout/releases/tag/v3.5.3
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Download node modules
uses: actions/download-artifact@v2
# https://github.com/actions/download-artifact/releases/tag/v3.0.2
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
with:
name: node_modules
- name: Build
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
# https://github.com/actions/checkout/releases/tag/v3.5.3
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
# https://github.com/actions/setup-node/releases/tag/v3.7.0
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.17.0
Loading

0 comments on commit ab7be9f

Please sign in to comment.