Skip to content

Commit

Permalink
test: fix git runner and test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Nov 8, 2023
1 parent e1ecfa4 commit 96bce37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/app-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:

jobs:
e2e:
runs-on: [self-hosted, ci-runner]
runs-on: [matterlabs-ci-runner]
permissions:
contents: read
defaults:
Expand Down Expand Up @@ -64,22 +64,14 @@ jobs:
with:
fetch-depth: 0

- name: Cache node modules
id: cache-nodemodules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
- name: Setup Node.js
uses: actions/setup-node@v3
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
node-version: '18'
cache: 'npm'

- name: Install dependencies
working-directory: ./
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: |
npm pkg delete scripts.prepare
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
deployBackendToStaging:
name: Deploy Block Explorer backend to staging
runs-on: [self-hosted, ci-runner]
runs-on: [matterlabs-ci-runner]
permissions:
contents: read
needs: createReleaseVersion
Expand Down

0 comments on commit 96bce37

Please sign in to comment.