Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix yarn.lock #576

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Download artifact
uses: qiwi-forks/action-download-artifact@v2
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Install
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
run: yarn
run: yarn --immutable

- name: Build
if: ${{ steps.check-artifact.outputs.exists == 'false' }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Restore artifact from cache (if exists)
uses: actions/cache@v3
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install
run: yarn
run: yarn --immutable

- name: Lint
run: yarn lint
Expand All @@ -148,7 +148,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 16, 18, 20 ]
node-version: [ 18, 20 ]
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -192,20 +192,20 @@ jobs:
run: tar -xvf artifact.tar

- name: Install
run: yarn
run: yarn --immutable

- name: Docker pull
if: matrix.node-version == '16'
if: matrix.node-version == '18'
run: |
docker pull browserless/chrome@sha256:4655517b70d598367f363e15fa311ea514879f6b4908ba9199d6714d6f8269a3
docker pull nginx@sha256:480868e8c8c797794257e2abd88d0f9a8809b2fe956cbfbc05dcc0bca1f7cd43

- name: Lint
if: matrix.node-version == '18'
if: matrix.node-version == '20'
run: yarn lint

- name: Visual tests
if: matrix.node-version == '16'
if: matrix.node-version == '18'
run: yarn test

- name: Save failure results
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

# - name: Codeclimate
# uses: paambaati/[email protected]
Expand All @@ -275,7 +275,7 @@ jobs:
${{ runner.os }}-yarn-

- name: Install
run: yarn
run: yarn --immutable

- name: Release
env:
Expand Down
779 changes: 0 additions & 779 deletions .yarn/releases/yarn-4.0.0-rc.14.cjs

This file was deleted.

Loading
Loading