This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* extract encoder * update lockfile * run unit tests
- Loading branch information
Showing
32 changed files
with
1,497 additions
and
217 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 |
---|---|---|
|
@@ -73,10 +73,50 @@ jobs: | |
args: [--frozen-lockfile] | ||
- name: Build | ||
run: pnpm run build | ||
|
||
test: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Cache node packages | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: pnpm-modules | ||
with: | ||
key: >- | ||
${{ runner.os }}-build-${{ env.cache-name }}-${{ | ||
hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
path: | | ||
~/.pnpm-store | ||
${{ github.workspace }}/.pnpm | ||
- name: Setup Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "16" | ||
- name: Setup PNPM | ||
uses: pnpm/[email protected] | ||
with: | ||
version: 6.2.5 | ||
run_install: | | ||
- recursive: true | ||
args: [--frozen-lockfile] | ||
- name: Download build artefact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: build-artefact | ||
path: . | ||
- run: pnpm test | ||
pre-release: | ||
name: Pre-release | ||
runs-on: ubuntu-latest | ||
needs: build | ||
needs: test | ||
concurrency: | ||
group: pre-release | ||
cancel-in-progress: true | ||
|
@@ -146,7 +186,7 @@ jobs: | |
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
needs: build | ||
needs: test | ||
if: startsWith(github.event.ref, 'refs/tags/v') | ||
concurrency: | ||
group: release | ||
|
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 |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
|
||
## 0.18.1 | ||
|
||
### Patch Changes | ||
|
||
- c735bc8: Use config from workspace configuration (correctly) | ||
|
||
## 0.18.0 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
// @ts-check | ||
/** @type {import('@jest/types').Config.InitialOptions} */ | ||
const config = { | ||
projects: ['packages/*/jest.config.js'], | ||
} | ||
|
||
module.exports = config |
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
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
packages/grammarly-languageserver/src/interfaces/Transformer.ts
This file was deleted.
Oops, something went wrong.
88 changes: 0 additions & 88 deletions
88
packages/grammarly-languageserver/src/languages/Langauge.ts
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
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.