Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact and actions/download-artifa…
Browse files Browse the repository at this point in the history
…ct from 3 to 4
  • Loading branch information
piotr-oles committed Aug 17, 2024
1 parent 0fab463 commit 657305b
Showing 1 changed file with 42 additions and 41 deletions.
83 changes: 42 additions & 41 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ jobs:
run: yarn build

- name: Upload build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lib
path: lib
if-no-files-found: error

test:
runs-on: ${{ matrix.os }}
Expand All @@ -46,45 +47,45 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Yarn cache directory
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Yarn cache
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Locks cache
uses: actions/cache@v4
with:
path: test/e2e/__locks__
key: ${{ runner.os }}-locks

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: lib
path: lib

- name: Run unit tests
run: yarn test:unit

- name: Run e2e tests
run: yarn test:e2e
- uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: Yarn cache directory
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Yarn cache
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Locks cache
uses: actions/cache@v4
with:
path: test/e2e/__locks__
key: ${{ runner.os }}-locks

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: lib
path: lib

- name: Run unit tests
run: yarn test:unit

- name: Run e2e tests
run: yarn test:e2e

release:
runs-on: ubuntu-latest
Expand All @@ -107,7 +108,7 @@ jobs:
run: yarn install --frozen-lockfile

- name: Download build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: lib
path: lib
Expand Down

0 comments on commit 657305b

Please sign in to comment.