Skip to content

Commit

Permalink
Merge branch 'fasttime:main' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Clayblockunova authored Jul 7, 2024
2 parents 9cdc383 + 5243dde commit d02b991
Show file tree
Hide file tree
Showing 164 changed files with 7,729 additions and 6,768 deletions.
39 changes: 23 additions & 16 deletions .github/workflows/JScrewIt.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: JScrewIt Node.js CI

on: [push, pull_request]
on:
push:
branches: '**'
tags-ignore: '**'
pull_request:
branches: '**'

jobs:

Expand All @@ -9,16 +14,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
- run: npm install --workspaces
- run: npm run --workspaces make
- run: npm install
- run: gulp lint
- run: gulp bundle:lib
- uses: actions/upload-artifact@v2
node-version: '22'
- run: |
npm install --workspaces
npm install
npm run --workspaces make
gulp lint
gulp bundle:lib
- uses: actions/upload-artifact@v4
with:
name: lib
path: lib
Expand All @@ -33,16 +39,17 @@ jobs:

strategy:
matrix:
node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x]
node-version: ['0.10', '0.12', '4', '6', '8', '10', '12', '14', '16', '18', '20', '22']

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install ebdd expectations mocha@3 postrequire
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: lib
path: lib
- run: npm test
- run: |
npm install @types/mocha@9 ebdd expectations mocha@3 postrequire
npm test
82 changes: 0 additions & 82 deletions .github/workflows/novem.yml

This file was deleted.

82 changes: 0 additions & 82 deletions .github/workflows/quinquaginta-duo.yml

This file was deleted.

90 changes: 90 additions & 0 deletions .github/workflows/~feature-hub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: ~feature-hub Node.js CI

on:
push:
branches: '**'
tags-ignore: '**'
pull_request:
branches: '**'

defaults:

run:

working-directory: packages/~feature-hub

jobs:

lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: |
npm install --prefix ../..
npm run lint
test:

name: test (Node.js ${{ matrix.node-version }})

runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['14', '16', '18', '20', '22']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test
prepare-legacy-test:

name: prepare legacy test

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: |
npm install --prefix ../..
npm run prepare-legacy-test
- uses: actions/upload-artifact@v3
with:
name: node-legacy
path: packages/~feature-hub/test/node-legacy

legacy-test:

name: legacy test (Node.js ${{ matrix.node-version }})

needs: prepare-legacy-test

runs-on: ubuntu-latest

strategy:
matrix:
node-version: ['0.10', '0.12', '4', '6', '8', '10', '12']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v3
with:
name: node-legacy
path: packages/~feature-hub/test/node-legacy
- run: npm run legacy-test
Loading

0 comments on commit d02b991

Please sign in to comment.