Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 17 days ago
JSON representation

An opinionated GitHub Actions Template using vite for bundling.

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.