From 20129880ecd9a32c41dc20438005e00b3dfc66ca Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Fri, 27 Sep 2024 09:54:54 -0500 Subject: [PATCH] fix: should use CI action rather then install directly (#85) # Description - Updates test suite to use the action rather then from github binary installation ## Linked Issues ## Additional context --- .github/workflows/playwright.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/playwright.yaml b/.github/workflows/playwright.yaml index e0749c46..26f6cb0e 100644 --- a/.github/workflows/playwright.yaml +++ b/.github/workflows/playwright.yaml @@ -24,11 +24,8 @@ jobs: - uses: actions/setup-node@v4 - name: Install Playwright Browsers run: bun playwright install chromium --with-deps - - name: Install Era Test Node - run: | - curl --proto '=https' -sSf https://raw.githubusercontent.com/matter-labs/era-test-node/main/scripts/install.sh > install.sh - chmod +x install.sh - sudo ./install.sh + - name: Run Era Test Node + uses: dutterbutter/era-test-node-action@v1 - name: Run test for ${{ matrix.tutorial }} run: | export TERM=xterm-256color