Skip to content

Commit cf2039f

Browse files
authored
πŸ”€ Merge pull request #14 from refactor
✨ 3.0.0 (#13)
2 parents f67cce3 + c253699 commit cf2039f

File tree

101 files changed

+7861
-10259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+7861
-10259
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: "Setup"
2+
description: "Setup Node.js environment and dependencies"
3+
4+
runs:
5+
using: "composite"
6+
steps:
7+
- uses: actions/setup-node@v4
8+
with:
9+
node-version: "lts/*"
10+
- name: Install Dependencies
11+
shell: bash
12+
run: npm ci

β€Ž.github/workflows/lint.yamlβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Lint
2+
on:
3+
push:
4+
branches-ignore:
5+
- main
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: "./.github/shared/setup-node"
12+
- name: Lint
13+
run: npm run lint

β€Ž.github/workflows/test.yamlβ€Ž

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Test
2+
on:
3+
push:
4+
branches-ignore:
5+
- main
6+
jobs:
7+
test-svelte:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: "./.github/shared/setup-node"
12+
- name: Test
13+
run: npm run test
14+
- name: Test build
15+
run: npm run build

β€Ž.github/workflows/test.ymlβ€Ž

Lines changed: 0 additions & 17 deletions
This file was deleted.

β€Ž.gitignoreβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
dist
22
node_modules
33
.npmrc
4+
5+
coverage

0 commit comments

Comments
Β (0)