forked from kintsoogi/translation-notes-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add delays after notifications to update display * add delays after notifications to update display * fix for windows path * tweak checking for twl or tn resources * navigate to folder if error, but repo was created * fix for original language * fix to make sure we have original languages * add delays after notifications to update display * add delays after notifications to update display * tweak checking for twl or tn resources * navigate to folder if error, but repo was created * fix for original language * fix to make sure we have original languages * revert navigation * added modal pops for errors * reduced modal pops for errors * fix for original bibles * fix for bibles that are missing book * progress tweak * progress tweak * fix for progress * progress work and github actions package * bump node version * working on github actions to generate package * working on github actions to generate package * update checking-tool-rcl to fix font selection --------- Co-authored-by: PhotoNomad0 <[email protected]>
- Loading branch information
1 parent
0a0d3b0
commit e8279a9
Showing
6 changed files
with
484 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install pnpm | ||
run: npm install --global pnpm | ||
- run: pnpm --version | ||
- name: Install dependencies | ||
run: pnpm run install:all | ||
- name: Build Extension | ||
run: pnpm run build:webview | ||
- name: Install vsce | ||
run: npm install -g @vscode/vsce | ||
- name: Package Extension | ||
run: vsce package |
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
Oops, something went wrong.