Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

goal: Basic parinfer integration #173

Merged
merged 4 commits into from
Dec 17, 2022
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
11 changes: 6 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
cache: yarn

- name: Install NPM Dependencies and Build Extension
run: |
npm ci
npm run compile
- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Build Extension
run: yarn compile
23 changes: 13 additions & 10 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
cache: yarn

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Check Linting
run: yarn lint

- name: Install Dependencies and Check Formatting
run: |
npm ci
npm run lint
formatting:
name: Formatting
runs-on: ubuntu-latest
Expand All @@ -37,9 +39,10 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
cache: yarn

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Install Dependencies and Check Formatting
run: |
npm ci
npm run format:check
- name: Check Linting
run: yarn format:check
10 changes: 6 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,19 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
cache: yarn

- name: Install Dependencies
run: yarn install --frozen-lockfile

- name: Bump Version
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: |
git config --global user.name "OpenGOALBot"
git config --global user.email "OpenGOALBot@users.noreply.github.com"
npm ci
npx vsce package
npx vsce publish ${{ github.event.inputs.bump }}
yarn vsce package
yarn vsce publish ${{ github.event.inputs.bump }}
git push
git push origin $(git tag --points-at HEAD)

Expand Down
1 change: 1 addition & 0 deletions decs.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module "parinfer";
Loading