Added fake data for test and dev environment #17
|
@ -1,19 +1,15 @@
|
||||||
name: Gitea Actions Demo
|
name: Unit Tests
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
unit-test:
|
||||||
container:
|
container:
|
||||||
image: oven/bun:1
|
image: oven/bun:1
|
||||||
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: actions/checkout@v3
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
- name: Bun install
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
run: bun install
|
||||||
- name: List files in the repository
|
- name: Run the test
|
||||||
run: |
|
run: bun test
|
||||||
ls ${{ gitea.workspace }}
|
|
Loading…
Reference in New Issue