diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 2260e1ab7..9595352e1 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -30,8 +30,13 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 with: - run_install: | - - args: [--frozen-lockfile, --filter=app-avatax] + run_install: false + - uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + cache: "pnpm" + - name: Install dependencies + run: pnpm install --frozen-lockfile --filter=app-avatax - name: Get Saleor snapshot run: | BACKUP=$(pnpm dlx saleor backup list --name="snapshot-avatax-$SALEOR_VERSION" --latest --json) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 802fe33b1..f67b7e51f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,8 +18,13 @@ jobs: - name: Setup PNPM uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 with: - run_install: | - - args: [--frozen-lockfile] + run_install: false + - uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + cache: "pnpm" + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: Check linter run: pnpm lint - name: Check types diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 992c8ff8b..27ba87384 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -25,8 +25,13 @@ jobs: run: git fetch --tags origin - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 with: - run_install: | - - args: [--frozen-lockfile] + run_install: false + - uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + cache: "pnpm" + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: Create Release Pull Request uses: changesets/action@e2f8e964d080ae97c874b19e27b12e0a8620fb6c # v1.4.6 id: changesets diff --git a/CODEOWNERS b/CODEOWNERS index c116e5460..8f5fbf671 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,5 +1,4 @@ * @saleor/apps-guild -/.github/ @saleor/SRE /apps/avatax @saleor/shopex-js /apps/segment @saleor/shopex-js