Compare commits
3 Commits
f30ae25ec2
...
e97eb3e1ec
Author | SHA1 | Date |
---|---|---|
Sven Vogel | e97eb3e1ec | |
Sven Vogel | 06438b7dc2 | |
Sven Vogel | 093a7aad95 |
|
@ -0,0 +1,19 @@
|
|||
name: Gitea Vite Build Action
|
||||
run-name: ${{ gitea.actor }} is performing vite build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Vite-Build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Install NPM
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: NPM install
|
||||
run: npm ci
|
||||
- name: Vite build
|
||||
run: npm run build
|
Loading…
Reference in New Issue