Skip to content

Commit

Permalink
Add additional EOL workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Nov 15, 2024
1 parent b7a0be2 commit 3c86fae
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/node.js-eol-20190430.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow performs continuous integration on node 8.x - 14.x, the last of
# which reached end-of-life on 2023-04-30 according to the [release schedule][1]
# published by the [release working group][2].
#
# [1]: https://github.com/nodejs/release/blob/main/schedule.json
# [2]: https://github.com/nodejs/release

name: "Node.js CI (EOL: 2023-04-30)"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ 6.x ]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

0 comments on commit 3c86fae

Please sign in to comment.