Skip to content

Commit

Permalink
upgrade to node20
Browse files Browse the repository at this point in the history
  • Loading branch information
jetli committed Apr 3, 2024
1 parent 95da713 commit 85219da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as os from 'os'
test('a fixed version v0.10.0', () => {
process.env['RUNNER_TEMP'] = os.tmpdir()
process.env['INPUT_VERSION'] = 'v0.10.0'
const ip = path.join(__dirname, '..', 'lib', 'main.js')
const ip = path.join(__dirname, '..', 'dist', 'index.js')
const options: cp.ExecSyncOptions = {
env: process.env
}
Expand All @@ -17,7 +17,7 @@ test('a fixed version v0.10.0', () => {
test('the latest version', () => {
process.env['RUNNER_TEMP'] = os.tmpdir()
process.env['INPUT_VERSION'] = 'latest'
const ip = path.join(__dirname, '..', 'lib', 'main.js')
const ip = path.join(__dirname, '..', 'dist', 'index.js')
const options: cp.ExecSyncOptions = {
env: process.env
}
Expand Down

0 comments on commit 85219da

Please sign in to comment.