34 lines
666 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-03-22 10:40:47 +08:00
env:
2023-05-15 09:44:42 +08:00
RUNNER_TOOL_CACHE: /toolcache
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-25 18:23:17 +08:00
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
2023-03-21 16:11:16 +08:00
2023-06-26 09:50:37 +08:00
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
2023-06-26 09:50:47 +08:00
version: 8
2023-06-26 09:50:37 +08:00
2023-06-25 18:23:17 +08:00
- run: pnpm -v