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

feat: removed out/compiled dir and added rollup to ci #16

Merged
3 commits merged into from
Aug 21, 2024
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -20,6 +20,12 @@ jobs:

- name: Install dependencies
run: npm install

- name: Run Rollup
run: npm run rollupci

- name: List contents of out/compiled directory (for debugging)
run: ls -R out/compiled

- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -22,6 +22,12 @@ jobs:

- name: Install dependencies
run: npm i

- name: Run Rollup
run: npm run rollupci

- name: List contents of out/compiled directory (for debugging)
run: ls -R out/compiled

- name: Install vsce
run: npm install -g @vscode/vsce
148 changes: 0 additions & 148 deletions out/Config.js

This file was deleted.

1 change: 0 additions & 1 deletion out/Config.js.map

This file was deleted.

19 changes: 0 additions & 19 deletions out/OneClickInstall.js

This file was deleted.

1 change: 0 additions & 1 deletion out/OneClickInstall.js.map

This file was deleted.

195 changes: 0 additions & 195 deletions out/Record.js

This file was deleted.

Loading

Unchanged files with check annotations Beta

import * as vscode from 'vscode';
import { readFileSync , appendFile} from 'fs';
import * as child_process from 'child_process';

Check warning on line 3 in src/Record.ts

GitHub Actions / build (macos-latest)

Import name `child_process` must match one of the following formats: camelCase, PascalCase

Check warning on line 3 in src/Record.ts

GitHub Actions / build (ubuntu-latest)

Import name `child_process` must match one of the following formats: camelCase, PascalCase

Check warning on line 3 in src/Record.ts

GitHub Actions / build (windows-latest)

Import name `child_process` must match one of the following formats: camelCase, PascalCase
import * as os from 'os';
function extractTestSetName(logContent: string) {
// Exchange the code for an access token
fetchAccessToken(code).then((data) => {
console.log("API CALL WAS MADE WITH DUMMY DATA");
return data

Check warning on line 28 in src/SignIn.ts

GitHub Actions / build (macos-latest)

Missing semicolon

Check warning on line 28 in src/SignIn.ts

GitHub Actions / build (ubuntu-latest)

Missing semicolon

Check warning on line 28 in src/SignIn.ts

GitHub Actions / build (windows-latest)

Missing semicolon
}).catch((error) => {
console.error('Failed to fetch access token:', error);
});