Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
dannil committed Dec 27, 2024
1 parent 235ec08 commit b00210d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ jobs:
echo "Building $PACKAGES"
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 22

- name: Lint
run: |
npm install
npm run lint
- name: Build
uses: openwrt/gh-action-sdk@v7
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ return view.extend({
return validateFile(value);
};

o = s.taboption('general', form.Value, 'http_port', _('Port'));
let o = s.taboption('general', form.Value, 'http_port', _('Port'));
o.datatype = 'portrange';
o.placeholder = '0-65535';

Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"scripts": {
"lint": "eslint",
"doc": "LC_ALL=C jsdoc -c jsdoc.conf.json -t node_modules/jaguarjs-jsdoc"
},
"devDependencies": {
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jaguarjs-jsdoc": "^1.1.0",
"jsdoc": "^3.6.7"
}
Expand Down

0 comments on commit b00210d

Please sign in to comment.