-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into release/T25.antman
- Loading branch information
Showing
8 changed files
with
60 additions
and
65 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,3 +1,10 @@ | ||
>0.2% | ||
not dead | ||
not op_mini all | ||
last 2 Chrome versions | ||
last 2 Firefox versions | ||
last 2 Safari versions | ||
last 2 Edge versions | ||
last 2 Opera versions | ||
last 2 iOS versions | ||
last 1 Android version | ||
last 1 ChromeAndroid version | ||
last 1 FirefoxAndroid version | ||
> 1%, not op_mini all, not ie <= 11, not ie_mob <= 11 |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: 'npm lint' | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
paths: | ||
- 'src/modules/**.js' | ||
- 'src/resources/js/**.js' | ||
- 'src/resources/postcss/**.pcss' | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
submodules: recursive | ||
# ------------------------------------------------------------------------------ | ||
# Setup Node. | ||
# ------------------------------------------------------------------------------ | ||
- name: Check for .nvmrc file | ||
id: check-nvmrc | ||
run: | | ||
if [ -f "${{ github.workspace }}/.nvmrc" ]; then | ||
echo "exists=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "exists=false" >> $GITHUB_OUTPUT | ||
fi | ||
- uses: actions/setup-node@v4 | ||
if: steps.check-nvmrc.outputs.exists == 'true' | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
- name: Install node modules | ||
run: npm ci | ||
- name: Run linting tasks | ||
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
18.17.0 | ||
18.13.0 |
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