123
Some checks failed
Node.js CI / build (push) Failing after 3s

This commit is contained in:
洪剑峰 2024-08-05 18:35:44 +08:00
parent da07970e17
commit 5ac3d65f5a

View File

@ -3,16 +3,15 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push] on: [push]
jobs: jobs:
Explore-Gitea-Actions: build:
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: ${{ gitea.repository }}
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - name: Use gitea Node.js
- run: echo "🖥️ The workflow is now ready to test your code on the runner." uses: https://gitea.com/actions/setup-node@v4
- name: List files in the repository with:
run: | node-version: '14'
ls ${{ gitea.workspace }} - name: Install dependencies
- run: echo "🍏 This job's status is ${{ job.status }}." run: yarn install
- name: Build Docusaurus website
run: yarn build