Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/alex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ jobs:
alex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run Alex
run: npx alex . || true
2 changes: 1 addition & 1 deletion .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Java
uses: actions/setup-java@v3
Expand All @@ -34,10 +34,10 @@
cd apk-wrapper
npm init -y
npm install @capacitor/core @capacitor/cli @capacitor/android
npx cap init "API-Master" "com.itsrkmahapatra.apimaster" --web-dir www

Check warning on line 37 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (apimaster)

Check warning on line 37 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (itsrkmahapatra)
mkdir www
echo "<html><body>Loading...</body></html>" > www/index.html
echo '{ "appId": "com.itsrkmahapatra.apimaster", "appName": "API-Master", "webDir": "www", "server": { "url": "https://itsrkmahapatra.github.io/API-Master?v=1780753094", "cleartext": true } }' > capacitor.config.json

Check warning on line 40 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (apimaster)

Check warning on line 40 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (itsrkmahapatra)
npx cap add android

- name: Add App Icon
Expand All @@ -52,9 +52,9 @@
- name: Build Android APK
run: |
cd apk-wrapper/android
chmod +x gradlew

Check warning on line 55 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (gradlew)
echo "configurations.all { exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7'; exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8' }" >> app/build.gradle

Check warning on line 56 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (stdlib)

Check warning on line 56 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (stdlib)
./gradlew assembleDebug

Check warning on line 57 in .github/workflows/build-apk.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (gradlew)

- name: Rename APK
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
contents: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v6
Expand All @@ -35,7 +35,7 @@
echo "app.whenReady().then(createWindow);" >> main.js

Copy-Item -Path '../logo.png' -Destination 'icon.png'
node -e "const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('package.json')); pkg.main = 'main.js'; pkg.author = 'Raj Kishor Mahapatra'; pkg.build = { appId: 'com.itsrkmahapatra.api-master', productName: 'API-Master', win: { target: 'nsis', icon: 'icon.png' } }; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));"

Check warning on line 38 in .github/workflows/build-exe.yml

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Kishor)

npx electron-builder --win

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Check JS Size
run: |
size=$(find . -name "*.js" -not -path "*/node_modules/*" -exec cat {} + | wc -c)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run ESLint
run: npx eslint --env browser --env es6 "**/*.js" || true
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ jobs:
license:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Check Licenses
run: npx license-checker --summary || true
2 changes: 1 addition & 1 deletion .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Link Checker
uses: lycheeverse/lychee-action@v2.8.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v23
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Check formatting with Prettier
run: npx prettier --check .
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '20.x'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: streetsidesoftware/cspell-action@v8
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/todo-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
issues: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: TODO to Issue
uses: alstr/todo-to-issue-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/w3c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Validate HTML
run: npx html-validator-cli --file="**/*.html" || true
Loading