https://github.com/luxass/github-action-template-vite
An opinionated GitHub Actions Template using vite for bundling.
https://github.com/luxass/github-action-template-vite
actions github-actions templates
Last synced: about 2 months ago
JSON representation
An opinionated GitHub Actions Template using vite for bundling.
- Host: GitHub
- URL: https://github.com/luxass/github-action-template-vite
- Owner: luxass
- License: mit
- Created: 2024-07-19T04:52:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-04-17T15:26:00.000Z (2 months ago)
- Last Synced: 2026-04-17T17:29:56.847Z (2 months ago)
- Topics: actions, github-actions, templates
- Language: TypeScript
- Homepage:
- Size: 803 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# github-action-template-vite
An opinionated GitHub Actions Template using [vite](https://vitejs.dev) for bundling.
## Try it now!
### GitHub Template
[Create a new repository from this template](https://github.com/new?template_name=github-action-template-vite&template_owner=luxass&name=action-[name])
### Manual
If you prefer to do it manually without the template, you can do the following:
```bash
npx degit luxass/github-action-template-vite action-[your-action-name]
cd action-[your-action-name]
pnpm install
```
## Usage
Before you start, you need to do the following to setup the project:
- [ ] Find and replace all `github-action-template` with your project name
- [ ] Update the License
- [ ] Update the README.md
- [ ] Update `action.yaml` file
> [!NOTE]
> You should probably remove the `test-action.yaml` workflow, and move it to a different repository.
> This will make it easier to test the action in a real repository, without having all the noise of the action repository.