Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .coder.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
host: https://1fx.dev
template: Default
name: {{repo}}
name: { { repo } }
parameters:
- name: "repo"
value: "custom"
- name: "custom_repo_url"
value: "git@github.com:{{org}}/{{repo}}.git"
- name: 'repo'
value: 'custom'
- name: 'custom_repo_url'
value: 'git@github.com:{{org}}/{{repo}}.git'
3 changes: 2 additions & 1 deletion .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This directory contains GitHub Actions workflows for CI automation.
**Triggers**: On push to `main` and on pull requests

**Jobs**:

- **Test**: Runs all unit tests
- **Lint**: Runs ESLint and TypeScript type checking

Expand All @@ -23,4 +24,4 @@ npm run lint

# Check types
npm run typecheck
```
```
21 changes: 9 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,40 +10,37 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

lint:
name: Lint
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install dependencies
run: npm install
- name: Run linter

- name: Run linter and type check
run: npm run lint

- name: Check types
run: npm run typecheck
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"trailingComma": "es5",
"printWidth": 100,
"arrowParens": "always"
}
}
2 changes: 1 addition & 1 deletion .vite/deps/_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"browserHash": "f11bfda0",
"optimized": {},
"chunks": {}
}
}
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-tslint-plugin"
]
}
}
Loading