-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update build.gradle.kts for wasm targets * Create runCatching.kt for wasm * Rename runCatching.kt to RunCatching.kt * Upgrade Kotlin to 1.9.0 * Create webpack.config.js * Rename result/webpack.config.js to resultwebpack.config.js * Rename resultwebpack.config.js to webpack.config.js * Delete webpack.config.js * Upgrade Kotlin to 1.9.20 with applyDefaultHierarchyTemplate() and added iosX64 target. * Update README.md * Update README.md * Create webpack.config.js * Rename result/webpack.config.js to webpack.config.js * Rename webpack.config.js to webpack.config.d/fs.js * Update PR.yml * Delete webpack.config.d/fs.js * Update publication.gradle.kts * Delete result/src/jsTest directory * Update gradle.properties * [Release] Update Kotlin version * Upgrade Kotlin to 1.9.21 with wasm * Update lint.yml * trying to fix a lot of warnings by super linter * trying to fix a lot of warnings by super linter round 2 * one more try * oops, no slim in v5 * I believe that I got this time! * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update Main.yml * Update PR.yml * Update Release.yml * [Release] Update Kotlin version * [Release] Update Kotlin version * Update build.gradle.kts * Update build.gradle.kts for wasm targets * Create runCatching.kt for wasm * Rename runCatching.kt to RunCatching.kt * Upgrade Kotlin to 1.9.0 * Create webpack.config.js * Rename result/webpack.config.js to resultwebpack.config.js * Rename resultwebpack.config.js to webpack.config.js * Delete webpack.config.js * Upgrade Kotlin to 1.9.20 with applyDefaultHierarchyTemplate() and added iosX64 target. * Create webpack.config.js * Rename result/webpack.config.js to webpack.config.js * Rename webpack.config.js to webpack.config.d/fs.js * Delete webpack.config.d/fs.js * [Release] Update Kotlin version * Upgrade Kotlin to 1.9.21 with wasm * Update lint.yml * trying to fix a lot of warnings by super linter * trying to fix a lot of warnings by super linter round 2 * one more try * oops, no slim in v5 * I believe that I got this time! * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update lint.yml * Update Main.yml * Update PR.yml * Update Release.yml * [Release] Update Kotlin version * [Release] Update Kotlin version * i think merge should be fine! --------- Co-authored-by: Kittinun Vantasin <[email protected]>
- Loading branch information
Showing
23 changed files
with
229 additions
and
288 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,4 @@ | ||
--- | ||
# These are supported funding model platforms | ||
|
||
github: [kittinunf] |
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,6 +1,7 @@ | ||
--- | ||
name: Run Gradle on PRs | ||
on: pull_request | ||
|
||
permissions: read-all | ||
jobs: | ||
gradle: | ||
runs-on: macos-latest | ||
|
@@ -16,7 +17,7 @@ jobs: | |
- name: Setup and execute Gradle 'build' task | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build -x jsBrowserTest | ||
arguments: build -x wasmJsNodeTest | ||
|
||
- name: Upload allTests results | ||
uses: actions/[email protected] | ||
|
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,55 +1,32 @@ | ||
--- | ||
################################# | ||
################################# | ||
## Super Linter GitHub Actions ## | ||
################################# | ||
################################# | ||
name: Lint Code Base | ||
name: Lint | ||
|
||
# | ||
# Documentation: | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
# | ||
|
||
############################# | ||
# Start the job on all push # | ||
############################# | ||
on: | ||
push: | ||
branches-ignore: [master, main] | ||
# Remove the line above to run when pushing to master | ||
#pull_request: | ||
#branches: [master, main] | ||
|
||
############### | ||
# Set the Job # | ||
############### | ||
on: # yamllint disable-line rule:truthy | ||
push: null | ||
pull_request: null | ||
permissions: read-all | ||
jobs: | ||
build: | ||
# Name the Job | ||
name: Lint Code Base | ||
# Set the agent to run on | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
|
||
################## | ||
# Load all steps # | ||
################## | ||
permissions: | ||
contents: read | ||
packages: read | ||
# To report GitHub Actions status checks | ||
statuses: write | ||
|
||
steps: | ||
########################## | ||
# Checkout the code base # | ||
########################## | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
# Full git history is needed to get a proper list of changed files within `super-linter` | ||
# super-linter needs the full git history to get the | ||
# list of files that changed across commits | ||
fetch-depth: 0 | ||
|
||
################################ | ||
# Run Linter against code base # | ||
################################ | ||
- name: Lint Code Base | ||
uses: docker://ghcr.io/github/super-linter:slim-v4 | ||
- name: Super-linter | ||
uses: super-linter/[email protected] | ||
env: | ||
VALIDATE_ALL_CODEBASE: false | ||
DEFAULT_BRANCH: master | ||
VALIDATE_SHELL_SHFMT: false | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,4 +1,4 @@ | ||
MIT License | ||
<h1>MIT License</h1> | ||
|
||
Copyright (c) 2017 Kittinun Vantasin | ||
|
||
|
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
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
9 changes: 0 additions & 9 deletions
9
result/src/appleMain/kotlin/com/github/kittinunf/result/runCatching.kt
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
result/src/appleTest/kotlin/com/github/kittinunf/result/Resource.kt
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
Oops, something went wrong.