-
Notifications
You must be signed in to change notification settings - Fork 1
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 newfold-labs/solutions
Solutions
- Loading branch information
Showing
32 changed files
with
19,914 additions
and
37 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,74 @@ | ||
name: "JS Lint Checker: Installer Module" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- "src/**/*.js" | ||
- "src/**/*.scss" | ||
pull_request: | ||
types: [opened, edited, reopened, ready_for_review] | ||
paths: | ||
- "src/**/*.js" | ||
- "src/**/*.scss" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint-check-spa: | ||
name: Run Lint Checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
# Install Node and npm | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
cache: 'npm' | ||
|
||
# Checks if node_modules exists in the cache. | ||
- name: Cache node_modules directory | ||
id: cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: ${{ runner.os }}-node- | ||
|
||
- name: Setup Registry | ||
run: printf "@newfold-labs:registry=https://npm.pkg.github.com/\n//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
|
||
# Installs @wordpress/scripts for lint checks if it does not exist in the cache. | ||
- name: Install dependencies | ||
run: npm i @wordpress/[email protected] --legacy-peer-deps | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
|
||
# Gets the files changed wrt to trunk and filters out the js files. | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
PATTERNS: | | ||
+(src)/**/*.js | ||
# Runs wp-scripts for checking JS coding issues. | ||
- name: Run JS Lint | ||
id: js-lint | ||
run: npx wp-scripts lint-js ${{ env.GIT_DIFF }} | ||
if: "!! env.GIT_DIFF" | ||
|
||
# Gets the files changed wrt to trunk and filters out the SASS files. | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
PATTERNS: | | ||
+(src)/**/*.scss | ||
if: ${{ success() || steps.js-lint.conclusion == 'failure' }} | ||
|
||
# Runs wp-scripts for checking SASS coding issues. | ||
- name: Run SASS Lint | ||
id: sass-lint | ||
run: npx wp-scripts lint-style ${{ env.GIT_DIFF }} | ||
if: ${{ (!! env.GIT_DIFF) && (success() || steps.js-lint.conclusion == 'failure') }} |
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
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 @@ | ||
<?php return array('dependencies' => array('wp-api-fetch', 'wp-dom-ready'), 'version' => 'e882fc6f7a957b49c6b4'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.