From 3148c84fe48d6302f93c1eb0c29da0213c7982f0 Mon Sep 17 00:00:00 2001 From: Markus Sanin Date: Wed, 26 Jun 2024 17:09:58 +0200 Subject: [PATCH] Add nolockfile for try-scenarios --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84567d0..0694e05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: wyvox/action-setup-pnpm@v3 + with: + args: "--no-lockfile" - name: Run Tests run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup working-directory: test-app-3.x @@ -79,6 +81,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: wyvox/action-setup-pnpm@v3 + with: + args: "--no-lockfile" - name: Run Tests run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup working-directory: test-app-4.x @@ -104,6 +108,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: wyvox/action-setup-pnpm@v3 + with: + args: "--no-lockfile" - name: Run Tests run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup working-directory: test-app-5.x