-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create reproduction for actions/setup-node#720
https://github.com/actions/setup-node/issues/720 Signed-off-by: Kevin Locke <[email protected]>
- Loading branch information
0 parents
commit 4324251
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Failing Workflow | ||
on: # yamllint disable-line rule:truthy | ||
push: {} | ||
workflow_dispatch: {} | ||
jobs: | ||
test: | ||
name: Checkout and Setup | ||
timeout-minutes: 2 | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// ESLint configuration for Node 6 and later. | ||
// <https://eslint.org/docs/user-guide/configuring> | ||
|
||
"use strict"; |