-
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.
Merge pull request #1 from aditosoftware/migrate-gitlab-to-github
chore: migrate from gitlab to GitHub
- Loading branch information
Showing
15 changed files
with
2,759 additions
and
1,088 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,2 @@ | ||
# Assign the designer team the whole repository | ||
* @aditosoftware/devs-designer |
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,77 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
⚠️ Do not share security issues here, instead use the **Report a vulnerability** in the security tab. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Describe exactly what happened to have this bug appear. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: Describe what you expect to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
Describe the steps to reproduce this bug. | ||
This will be automatically formatted into code, so no need for backticks. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: input | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: What OS are you using? | ||
placeholder: Windows 10, macOS 14.6.1, ubuntu 24, ... | ||
validations: | ||
required: true | ||
- type: input | ||
id: database-version | ||
attributes: | ||
label: Database type and version | ||
description: What database type and version are you using? | ||
placeholder: MariaDB 11.5, PostgreSQL 16.4, ... | ||
- type: input | ||
id: liquibase-version | ||
attributes: | ||
label: Liquibase version | ||
description: What version of vscode-liquibase are you using? | ||
placeholder: 1.0.2 | ||
validations: | ||
required: true | ||
- type: input | ||
id: vscode-version | ||
attributes: | ||
label: VSCode version | ||
description: What version of VSCode are you using? | ||
placeholder: 1.93.0 | ||
validations: | ||
required: true |
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,21 @@ | ||
name: Feature Request | ||
description: Request a new feature. | ||
title: "[Feature]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to request a new feature! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe the feature here | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: implementation-ideas | ||
attributes: | ||
label: Implementation ideas | ||
description: If you have any implementation ideas, you can share them here. |
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,12 @@ | ||
|
||
# Please check before merging | ||
|
||
- [ ] Is the content of the `README.md` file still up-to-date? | ||
- [ ] Have you added an entry to the `CHANGELOG.md`? | ||
- [ ] Is the pull request title written in the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) format? | ||
- [ ] VSCode: Did you write e2e tests? | ||
- [ ] VSCode: Did you follow the [UX Guidelines](https://code.visualstudio.com/api/ux-guidelines/overview)? | ||
|
||
# Description | ||
|
||
Please describe your pull request. |
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,21 @@ | ||
name: ESLint | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
eslint: | ||
name: Run eslint scanning | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run ESLint | ||
run: npm run lint |
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,63 @@ | ||
name: Build Project | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
# No windows runner, because in this extension, we have a lot of tests that need docker in the WSL. | ||
# Sadly, the setup-wsl (https://github.com/Vampire/setup-wsl) and the current windows runners only support WSL 1. | ||
# Therefore, we can not install and start a docker container in the WSL. | ||
|
||
# Currently, no macOS runner, because during the setup of docker, this runner hangs: https://github.com/douglascamata/setup-docker-macos-action/issues/37 | ||
os: [ubuntu-latest] | ||
node-version: [18.x, 20.x, 22.x] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Set up JDK for Liquibase CLI | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 21 | ||
distribution: temurin | ||
|
||
- name: Check Docker Version | ||
run: docker --version | ||
|
||
- name: Check Node.js version | ||
run: node -v | ||
|
||
- name: Check npm versions | ||
run: npm -v | ||
|
||
- name: Run clean install | ||
run: npm ci | ||
|
||
- run: xvfb-run -a npm test | ||
if: runner.os == 'Linux' | ||
- run: npm test | ||
if: runner.os != 'Linux' | ||
|
||
- name: run e2e tests | ||
run: xvfb-run -a npm run test:e2e -- --storage ./out/test-resources/${{ matrix.os }}/${{ matrix.node-version }} | ||
if: runner.os == 'Linux' | ||
|
||
- name: npm e2e tests | ||
run: npm run test:e2e -- --storage ./out/test-resources/${{ matrix.os }}/${{ matrix.node-version }} | ||
if: runner.os != 'Linux' | ||
|
||
- name: "Upload e2e screenshots" | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: e2e-screenshots-${{ matrix.os }}-${{ matrix.node-version }} | ||
path: ./out/test-resources/**/screenshots/** | ||
retention-days: 5 | ||
if-no-files-found: ignore |
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
Oops, something went wrong.