diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ebb3aa86..3fb711b7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }} @@ -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 @@ -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