Skip to content
Open
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
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

42 changes: 0 additions & 42 deletions .eslintrc.json

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
package-lock.json
yarn.lock

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
2 changes: 0 additions & 2 deletions .prettierignore

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Pin workflows to the latest Ubuntu LTS version
- Remove package-lock.json from the repo
- Pin workflows to the latest Ubuntu LTS version

## 1.5.0 - 20250-02-05
Expand Down
2 changes: 2 additions & 0 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import * as process from 'node:process'
import * as cp from 'node:child_process'
import * as path from 'node:path'

import { test, expect } from 'vitest'

const REQUIRED_VARIABLES = [
'INPUT_GITHUB_TOKEN',
'SLACKSYNC_CHANNEL',
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ inputs:
default: ${{ github.token }} # same as ${{ secrets.GITHUB_TOKEN }}
required: true
runs:
using: 'node16'
main: 'dist/main.js'
post: 'dist/main.js'
using: 'node20'
main: 'dist/main.cjs'
post: 'dist/main.cjs'
Loading