design-system-dashboard-devmunity 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -3
- package/package.json +1 -1
- package/.github/workflows/ci.yml +0 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
## [0.0.
|
|
1
|
+
## [0.0.3](https://github.com/vicventum/design-system-dashboard-devmunity/compare/v0.0.2...v0.0.3) (2025-11-05)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
7
|
-
* **dev-infra:** Cambia la rama de `master` a `main` en la configuración ([9e4c691](https://github.com/vicventum/design-system-dashboard-devmunity/commit/9e4c691dbe136c952436c6b941fa158178d6f4e0))
|
|
6
|
+
* **ci:** Elimina archivo `ci.yml` que ejecutaba el linter ya que no es necesario ([0df65a8](https://github.com/vicventum/design-system-dashboard-devmunity/commit/0df65a8ee189bba7190f116453f6188d121e73c0))
|
package/package.json
CHANGED
package/.github/workflows/ci.yml
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
name: ci
|
|
2
|
-
|
|
3
|
-
on: push
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
ci:
|
|
7
|
-
runs-on: ${{ matrix.os }}
|
|
8
|
-
|
|
9
|
-
strategy:
|
|
10
|
-
matrix:
|
|
11
|
-
os: [ubuntu-latest]
|
|
12
|
-
node: [22]
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- name: Checkout
|
|
16
|
-
uses: actions/checkout@v5
|
|
17
|
-
|
|
18
|
-
- name: Setup Node.js
|
|
19
|
-
uses: actions/setup-node@v5
|
|
20
|
-
with:
|
|
21
|
-
node-version: ${{ matrix.node }}
|
|
22
|
-
cache: npm
|
|
23
|
-
|
|
24
|
-
- name: Install dependencies
|
|
25
|
-
run: npm ci
|
|
26
|
-
|
|
27
|
-
- name: Lint
|
|
28
|
-
run: npm run lint
|
|
29
|
-
|
|
30
|
-
- name: Typecheck
|
|
31
|
-
run: npm run typecheck
|