Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
killagu committed Feb 19, 2024
1 parent db84e52 commit d5fddc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
Job:
name: Node.js
uses: artusjs/github-actions/.github/workflows/node-test.yml@v1
uses: node-modules/github-actions/.github/workflows/node-test.yml@master
with:
os: 'ubuntu-latest, macos-latest, windows-latest'
version: '16, 18, 20'
2 changes: 2 additions & 0 deletions test/start.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const mm = require('mm');
const utils = require('./utils');
const awaitEvent = require('await-event');
const isWin = process.platform === 'win32';
const version = Number(process.version.substring(1, 3));

describe('test/start.test.js', () => {
const eggBin = require.resolve('../bin/egg-scripts.js');
Expand Down Expand Up @@ -575,6 +576,7 @@ describe('test/start.test.js', () => {
});

describe('read egg.revert', () => {
if (version < 18) return;
let app;
let fixturePath;

Expand Down

0 comments on commit d5fddc3

Please sign in to comment.