version 1.4.1 #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name : js_action_publish | |
on : | |
push : | |
branches : [ js_action ] | |
tags: 'v*' | |
jobs : | |
full : | |
env : | |
PRIVATE_WTOOLS_BOT_TOKEN : ${{ secrets.PRIVATE_WTOOLS_BOT_TOKEN }} | |
PRIVATE_WTOOLS_BOT_SSH_KEY : ${{ secrets.PRIVATE_WTOOLS_BOT_SSH_KEY }} | |
PRIVATE_WTOOLS_BOT_NPM_PASS : ${{ secrets.PRIVATE_WTOOLS_BOT_NPM_PASS }} | |
PRIVATE_WTOOLS_BOT_EMAIL : ${{ secrets.PRIVATE_WTOOLS_BOT_EMAIL }} | |
NODE_PRE_GYP_GITHUB_TOKEN : ${{ secrets.NODE_PRE_GYP_GITHUB_TOKEN }} | |
strategy : | |
fail-fast : false | |
matrix : | |
os : [ ubuntu-latest, windows-latest, macos-latest ] | |
node-version : [ 12.9.1, 14.x, 16.x, 18.x ] | |
if : "startsWith( github.event.head_commit.message, 'version' ) && startsWith( github.ref, 'refs/tags/v' )" | |
runs-on : ${{ matrix.os }} | |
steps : | |
- name : Setup git | |
run : | | |
git config --global core.autocrlf input | |
git config --global user.email "testing@testing.com" | |
git config --global user.name "Testing" | |
git config --global pull.rebase false | |
git config --global init.defaultBranch master | |
- name : Setup git for windows | |
if : ${{ matrix.os == 'windows-latest' }} | |
run : git config --system core.longpaths true | |
- uses : actions/checkout@v2 | |
with : | |
fetch-depth: 2 | |
- name : ${{ matrix.node-version }} | |
uses : Wandalen/wretry.action@master | |
with : | |
action : actions/setup-node@v2 | |
with : | | |
node-version : ${{ matrix.node-version }} | |
attempt_limit : 3 | |
attempt_delay: 1000 | |
- name : Save npm version | |
id : getnpmver | |
run : | | |
echo "npmver=$(npm -v)" >> $GITHUB_OUTPUT | |
- name : Update npm if current version is 6 | |
if : "startsWith( steps.getnpmver.outputs.npmver, '6.' )" | |
run : npm install -g npm@latest-6 | |
- name : Update node-gyp | |
if: ${{ matrix.os == 'windows-latest' && matrix.node-version != '18.x' }} | |
run : | | |
npm install --global node-gyp@9.0.0 | |
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"} | |
- name : Install willbe | |
uses : Wandalen/wretry.action@master | |
with : | |
command : npm i -g willbe@latest | |
attempt_limit : 3 | |
attempt_delay: 1000 | |
- name : Install submodules | |
uses : Wandalen/wretry.action@master | |
with : | |
command : will .npm.install | |
attempt_limit : 3 | |
attempt_delay: 1000 | |
- name : Environment | |
run : env | |
- run : npm list | |
continue-on-error : true | |
- if : startsWith( matrix.os, 'ubuntu' ) | |
run : xvfb-run --auto-servernum npm test | |
- if : "!startsWith( matrix.os, 'ubuntu' )" | |
run : npm test |