action-demo/.gitea/workflows/build.yaml

36 lines
740 B
YAML
Raw Normal View History

2023-03-21 16:11:16 +08:00
name: Gitea Actions Demo
2023-04-12 09:58:49 +08:00
on: [push]
2023-03-21 16:11:16 +08:00
jobs:
2023-03-21 17:09:02 +08:00
Gitea-Actions:
runs-on: ubuntu-latest
2023-03-22 10:00:32 +08:00
container:
image: catthehacker/ubuntu:act-latest
2023-06-26 15:41:22 +08:00
volumes:
- ubuntu_hostedtoolcache:/opt/hostedtoolcache
2023-03-21 16:11:16 +08:00
steps:
2023-03-23 17:25:15 +08:00
- name: Checkout
uses: actions/checkout@v3
- run: cat README.md
2023-06-26 09:45:35 +08:00
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
- run: java -version
2023-06-26 09:56:18 +08:00
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
2023-06-26 15:44:02 +08:00
version: 7
2023-06-26 09:56:18 +08:00
2023-06-25 18:23:17 +08:00
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
2023-06-26 15:45:51 +08:00
cache: 'pnpm'
2023-03-21 16:11:16 +08:00
2023-06-26 09:56:18 +08:00
- run: pnpm -v
- run: pnpm install