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: 1 addition & 1 deletion .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'
- name: Build with ncc
run: |
npm install -g yarn
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/echo-1.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Message Echo 1

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
workflow_dispatch:
inputs:
message:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/echo-2.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Message Echo 2

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
workflow_dispatch:
inputs:
message:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/failing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Failing

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
workflow_dispatch:

jobs:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/long-running.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Long running

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/retrieve-logs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'
- name: Some command with npx
run: |
npx create-react-app example-app
4 changes: 4 additions & 0 deletions .github/workflows/timeout.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Timeout

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.20.0
20
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.format.enable": true,
"[typescript]": {
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ inputs:
default: ignore

runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

branding:
Expand Down
Loading