https://github.com/timooo-thy/resume
A little more about me
https://github.com/timooo-thy/resume
Last synced: 4 months ago
JSON representation
A little more about me
- Host: GitHub
- URL: https://github.com/timooo-thy/resume
- Owner: timooo-thy
- License: mit
- Created: 2024-11-18T12:11:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-12T13:32:47.000Z (6 months ago)
- Last Synced: 2026-02-12T16:47:51.770Z (6 months ago)
- Language: TypeScript
- Homepage: https://timooothy.dev
- Size: 3.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Timothy's Resume & Blog
## CI/CD Pipeline
This project uses GitHub Actions for continuous integration and deployment:
### Workflows
1. **CI Pipeline** (`.github/workflows/ci.yml`)
- Runs on push to main/dev branches and pull requests
- Installs dependencies
- Lints code
- Runs tests
- Builds the application
### Setting up CI/CD
1. Add the necessary secrets to your GitHub repository:
2. Enable GitHub Actions in your repository settings if not already enabled.
3. Push to the main branch to trigger the deployment workflow.
### Running tests locally
```bash
# Run tests once
npm test
# Run tests in watch mode
npm run test:watch
# Run tests with coverage
npm run test:ci
```