We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0392e18 commit a506e80Copy full SHA for a506e80
.github/actions/cache-front/action.yml
@@ -3,6 +3,9 @@ description: 'Cache for Front'
3
runs:
4
using: "composite"
5
steps:
6
+ - name: Add build dependencies to container
7
+ shell: sh
8
+ run: apk add --update --no-progress tar
9
- name: Cache
10
uses: actions/cache@v3
11
with:
.github/workflows/front.yml
@@ -1,4 +1,4 @@
1
-name: "Front (Vue)"
+name: "Front"
2
on:
pull_request:
branches: [ main ]
@@ -54,7 +54,7 @@ jobs:
54
- uses: ./.github/actions/cache-front
55
- run: yarn
56
- name: Check format
57
- run: yarn run prettier --check
+ run: yarn run prettier --check .
58
Lint:
59
if: ${{ needs.changes.outputs.front == 'true' && github.event_name == 'pull_request' }}
60
runs-on: ubuntu-latest
0 commit comments