-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from perl-actions/multiple-improvements
Multiple improvements to cpm
- Loading branch information
Showing
656 changed files
with
32,080 additions
and
133,941 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
name: check | ||
|
||
on: [push] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
# note using ./ is a trick to be sure to use @master | ||
|
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,23 @@ | ||
name: Lint javascript | ||
on: | ||
push: | ||
paths: | ||
- '*.js' | ||
- '.github/workflows/lint-javascript.yml' | ||
- 'eslint.config.js' | ||
- 'package*' | ||
pull_request: | ||
paths: | ||
- '*.js' | ||
- '.github/workflows/lint-javascript.yml' | ||
- 'eslint.config.js' | ||
- 'package*' | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Lint javascript | ||
run: npm run lint |
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 @@ | ||
/node_modules/ |
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
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 |
---|---|---|
|
@@ -53,4 +53,4 @@ inputs: | |
|
||
runs: | ||
using: "node20" | ||
main: "index.js" | ||
main: "dist/index.js" |
Oops, something went wrong.