Skip to content

Commit 7e539dc

Browse files
committed
build: add gitpod config file
1 parent f695cc2 commit 7e539dc

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
- uses: ./.github/actions/init-monorepo
3333
- name: Build
3434
run: pnpm nx run-many --target build --all --output-style=stream
35+
- name: Upload coverage reports to Codecov
36+
uses: codecov/codecov-action@v5
37+
with:
38+
token: ${{ secrets.CODECOV_TOKEN }}
3539
- name: Check for mutations
3640
run: git diff --ignore-space-at-eol --exit-code -- ':!**/LICENSE-THIRD-PARTY'
3741
- name: Upload artifact

.gitpod.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
tasks:
2+
- init: pnpm install && curl -LsSf https://astral.sh/uv/install.sh | sh && uv python install 3.12

.vscode/extensions.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"recommendations": [
33
"nrwl.angular-console",
4+
"rluvaton.vscode-vitest",
5+
"ms-python.python",
6+
"ms-python.vscode-pylance",
7+
"ms-python.debugpy",
8+
"ms-azuretools.vscode-docker",
49
"esbenp.prettier-vscode",
5-
"firsttris.vscode-jest-runner",
6-
"ms-playwright.playwright",
710
"astro-build.astro-vscode"
811
]
912
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg" alt="Apache 2.0 License"/></a>
44
<a href="https://codecov.io/gh/awslabs/nx-plugin-for-aws" ><img src="https://codecov.io/gh/awslabs/nx-plugin-for-aws/graph/badge.svg?token=X27pgFfxuQ"/></a>
5-
<a href="https://gitpod.io/#https://github.com/awslabs/nx-plugin-for-aws"><img src="https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod" alt="Gitpod ready-to-code"/></a>
5+
<a href="https://gitpod.io/new/?workspaceClass=g1-large#https://github.com/awslabs/nx-plugin-for-aws"><img src="https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod" alt="Gitpod ready-to-code"/></a>
66
<a href="https://github.com/awslabs/nx-plugin-for-aws/actions/workflows/ci.yml"><img src="https://github.com/awslabs/nx-plugin-for-aws/actions/workflows/ci.yml/badge.svg" alt="Release badge"/></a>
77
<a href="https://github.com/awslabs/nx-plugin-for-aws/commits/main"><img src="https://img.shields.io/github/commit-activity/w/awslabs/nx-plugin-for-aws" alt="Commit activity"/></a>
88

docs/src/content/docs/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ hero:
3131
<a href="https://codecov.io/gh/awslabs/nx-plugin-for-aws">
3232
<img src="https://codecov.io/gh/awslabs/nx-plugin-for-aws/graph/badge.svg?token=X27pgFfxuQ" />
3333
</a>
34-
<a href="https://gitpod.io/#https://github.com/awslabs/nx-plugin-for-aws">
34+
<a href="https://gitpod.io/new/?workspaceClass=g1-large#https://github.com/awslabs/nx-plugin-for-aws">
3535
<img
3636
src="https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod"
3737
alt="Gitpod ready-to-code"

0 commit comments

Comments
 (0)