Skip to content

Commit

Permalink
Gate off branch deploy. Move main build from 17 to 18.
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed Apr 19, 2022
1 parent bf49490 commit ecffd4f
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 13 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/nodejs.yml
Expand Up @@ -9,11 +9,11 @@ jobs:
strategy:
matrix:
include:
- node-version: 17.x # fastest, so run first, to error fast
- node-version: 18.x # fastest, so run first, to error fast
os: ubuntu-latest
- node-version: 17.x # slowest, so run next. sort by slowest from here to get earliest end through parallelism
- node-version: 18.x # slowest, so run next. sort by slowest from here to get earliest end through parallelism
os: macos-latest
- node-version: 17.x # finish check big-3 on latest current
- node-version: 18.x # finish check big-3 on latest current
os: windows-latest
- node-version: 10.x # lastly check just ubuntu on historic node versions because speed, oldest (slowest) first
os: ubuntu-latest
Expand All @@ -29,6 +29,8 @@ jobs:
os: ubuntu-latest
- node-version: 16.x
os: ubuntu-latest
- node-version: 17.x
os: ubuntu-latest

runs-on: ${{matrix.os}}

Expand All @@ -50,7 +52,7 @@ jobs:
path-to-lcov: ./coverage/spec/lcov.info

verify-version-bump-then-release:
if: (github.event.pusher.name == github.event.repository.owner.name)
if: (github.event.pusher.name == github.event.repository.owner.name) && (github.ref == 'refs/heads/main')
needs: build
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion dist/es6/version.js
@@ -1,2 +1,2 @@
const version = "5.41.15";
const version = "5.42.0";
export { version };
2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.nonmin.js
Expand Up @@ -15885,7 +15885,7 @@ function peg$parse(input, options) {
}
}

const version = "5.41.15";
const version = "5.42.0";

// whargarbl lots of these return arrays could/should be sets
/* eslint-disable complexity */
Expand Down
2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.nonmin.js
Expand Up @@ -15884,7 +15884,7 @@ var jssm = (function (exports) {
}
}

const version = "5.41.15";
const version = "5.42.0";

// whargarbl lots of these return arrays could/should be sets
/* eslint-disable complexity */
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/classes/Machine.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/docs/modules.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jssm",
"version": "5.41.15",
"version": "5.42.0",
"engines": {
"node": ">=10.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/ts/version.ts
@@ -1,3 +1,3 @@

const version: string = "5.41.15";
const version: string = "5.42.0";
export { version };

0 comments on commit ecffd4f

Please sign in to comment.