-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
local-lib
for easy caching (#28)
* Performing change #24 by @quarckster * Upgrading to stave off #23 and follow #22 * Changing URLs * ♻️ #22 #23 #25 * Setting up #2 Although the environment variable part is going to be a bit harder * Implementing env var #2 * #2 testing * Working well, but let's see the variables * Local lib needs false sudo * Let's see what it's doing... * Adding linting. Quality is important * Change name and branding * I guess that does not apply * Fixed eslint error * Change to equivalent input variable * Rewrite config with new version * Solving the config issue * use CommonJS config
- Loading branch information
Showing
9 changed files
with
26,056 additions
and
8,041 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
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
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
Oops, something went wrong.