fix
This commit is contained in:
parent
45b79478ff
commit
9f747846e8
@ -5,22 +5,22 @@ runs:
|
||||
using: 'composite'
|
||||
|
||||
steps:
|
||||
- name: Corepack enable
|
||||
run: corepack enable
|
||||
- run: corepack enable
|
||||
|
||||
- name: Hash files
|
||||
- uses: seepine/hash-files@v1
|
||||
id: get-hash
|
||||
uses: seepine/hash-files@v1
|
||||
with:
|
||||
patterns: |
|
||||
**/package.json
|
||||
**/yarn.lock
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v3
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-yarn-${{ steps.get-hash.outputs.hash }}
|
||||
key: ${{ runner.os }}-yarn-install-${{ steps.get-hash.outputs.hash }}
|
||||
|
||||
- name: Dependent installation
|
||||
run: yarn install
|
||||
- run: echo install start
|
||||
|
||||
- run: yarn install
|
||||
|
||||
- run: echo install end
|
||||
|
58
.gitea/workflows/test-with-action.yml
Normal file
58
.gitea/workflows/test-with-action.yml
Normal file
@ -0,0 +1,58 @@
|
||||
name: Gitea Actions Demo
|
||||
on: [push]
|
||||
jobs:
|
||||
|
||||
setup:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
env:
|
||||
RUNNER_TOOL_CACHE: /toolcache
|
||||
outputs:
|
||||
hash: ${{ steps.get-hash.outputs.hash }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Yarn install
|
||||
uses: ./.gitea/actions/yarn-install
|
||||
|
||||
test:
|
||||
needs: setup
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
env:
|
||||
RUNNER_TOOL_CACHE: /toolcache
|
||||
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
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
env:
|
||||
RUNNER_TOOL_CACHE: /toolcache
|
||||
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"
|
@ -61,7 +61,7 @@
|
||||
"sass": "^1.57.1",
|
||||
"typescript": "^4.9.2",
|
||||
"unplugin-auto-import": "^0.16.6",
|
||||
"vite": "4.0.4",
|
||||
"vite": "4.0.3",
|
||||
"vue-tsc": "^1.0.24"
|
||||
},
|
||||
"lint-staged": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user