Skip to content

Commit

Permalink
Upgrade nodejs version all all dependencies
Browse files Browse the repository at this point in the history
[f:2h]
  • Loading branch information
stefanmaric committed Aug 7, 2023
1 parent 1f53045 commit 63ae78d
Show file tree
Hide file tree
Showing 11 changed files with 20,456 additions and 131,978 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12
18
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

## Unreleased
7 changes: 5 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ import * as process from 'process'
import * as cp from 'child_process'
import * as path from 'path'

test('test runs', () => {
test('it runs without failing', () => {
const ip = path.join(__dirname, '..', 'dist', 'index.js')
const options: cp.ExecSyncOptions = {
env: process.env,
}

console.log(cp.execSync(`node ${ip}`, options).toString())
expect(() => {
// eslint-disable-next-line no-sync
console.log(cp.execSync(`node ${ip}`, options).toString())
}).not.toThrow()
})
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ inputs:
description: 'JSON Serialized object with <tagname>:<tagvalue> pairs'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
using: 'node16'
main: 'dist/main.js'
128,472 changes: 0 additions & 128,472 deletions dist/index.js

This file was deleted.

Loading

0 comments on commit 63ae78d

Please sign in to comment.