Skip to content

Commit

Permalink
test(Release): test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsawicki committed Sep 10, 2024
1 parent a047410 commit 2b91ffb
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,27 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '20.x'
# cache: 'npm'

- name: Cache node_modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
node-version: '20.x'
cache: 'npm'
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
- name: Install modules
run: npm ci

- name: Build icons
Expand Down

0 comments on commit 2b91ffb

Please sign in to comment.