-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor to a lean implementation * update gitignore * rework retry errors * add main test example * remove integration tests * prettier fix
- Loading branch information
1 parent
d742e57
commit 0b374bb
Showing
50 changed files
with
6,697 additions
and
129,354 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 |
---|---|---|
|
@@ -7,29 +7,6 @@ on: # rebuild any PRs and main branch changes | |
- 'releases/*' | ||
|
||
jobs: | ||
integration-test: # make sure the action works on a clean machine without building | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | ||
- name: Yarn Install | ||
run: yarn install | ||
- uses: actions/cache/save@v3 | ||
id: cache-save | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
- run: | | ||
yarn run run:mockserver & # run mockserver in background, will be killed when test finishes | ||
- uses: ./ | ||
with: | ||
speckle_automate_url: 'http://127.0.0.1:3000' | ||
speckle_token: 'lolzSuperSecretzToken' | ||
speckle_function_id: 'functionid' | ||
speckle_function_path: 'examples/minimal' | ||
speckle_function_command: 'echo' | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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 |
---|---|---|
|
@@ -34,6 +34,7 @@ node_modules | |
# dotenv environment variables file | ||
.env | ||
.env.test | ||
.envrc | ||
|
||
# Ignore built ts files | ||
lib | ||
|
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.