Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: attempt to get ci to pass #144

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: "18"
node-version: 20

- run: corepack enable
- run: npm ci
- run: npm run deps
- run: npm run test
- uses: JS-DevTools/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:
strategy:
matrix:
os: [macos-12, ubuntu-22.04, windows-2022]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
node-version: 20
cache: "npm"
- run: corepack enable
- run: npm ci
- run: npm run deps
- run: npm run test
3 changes: 3 additions & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,14 @@ module.exports = function(grunt){
},
nwjs: {
options: {
mode: "build",
srcDir: src,
version: '0.76.1',
outDir: dest, // Where the build version of my node-webkit app is saved
glob: false,
logLevel: "debug",
},
src: [ src + '/**/*'] // Your node-webkit app
},
mochaTest:{
test:{
Expand Down
Loading
Loading