huanghs
d8fb113f9d
All checks were successful
Gitea Actions Demo / Gitea-Actions (push) Successful in 4s
36 lines
740 B
YAML
36 lines
740 B
YAML
name: Gitea Actions Demo
|
|
on: [push]
|
|
jobs:
|
|
Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
volumes:
|
|
- ubuntu_hostedtoolcache:/opt/hostedtoolcache
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- run: cat README.md
|
|
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: zulu
|
|
java-version: 11
|
|
|
|
- run: java -version
|
|
|
|
- name: Setup Pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 7
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: 'pnpm'
|
|
|
|
- run: pnpm -v
|
|
- run: pnpm install |