Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
chore: github actions updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Enase committed Jun 12, 2023
1 parent c4c8bb2 commit 428e28a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/cache@v2.1.6"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: 'yarn'
node-version: 16
cache-dependency-path: 'yarn.lock'

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/cache@v2.1.6"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: 'yarn'
node-version: 16
cache-dependency-path: 'yarn.lock'

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:

steps:
- name: "Checkout source code"
uses: "actions/checkout@v2.3.4"
uses: "actions/checkout@v3"
with:
lfs: true
fetch-depth: 0

- id: yarn-cache
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: "actions/cache@v2.1.6"
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
cache: 'yarn'
node-version: 16
cache-dependency-path: 'yarn.lock'

- run: "yarn install --frozen-lockfile"
- run: "yarn lint"
Expand Down

0 comments on commit 428e28a

Please sign in to comment.