43 lines
835 B
YAML
43 lines
835 B
YAML
name: Gitea Actions Demo
|
|
on: [push]
|
|
jobs:
|
|
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Yarn install
|
|
uses: ./.gitea/actions/yarn-install
|
|
|
|
test:
|
|
needs: setup
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Yarn install
|
|
uses: ./.gitea/actions/yarn-install
|
|
|
|
- name: Eslint Test
|
|
run: npx eslint --ext ".vue,.js,.jsx,.ts,.tsx"
|
|
|
|
build:
|
|
needs: setup
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Yarn install
|
|
uses: ./.gitea/actions/yarn-install
|
|
|
|
- name: Eslint Test
|
|
run: npx eslint --ext ".vue,.js,.jsx,.ts,.tsx"
|