From 491afd58ab8cf0e5f610bb169b7667543402ab2d Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Sun, 12 Nov 2023 14:43:52 +0000 Subject: [PATCH] Reverted PR workflow to manual node setup --- .github/workflows/pr_pipeline.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr_pipeline.yaml b/.github/workflows/pr_pipeline.yaml index e187595..1c6aa91 100644 --- a/.github/workflows/pr_pipeline.yaml +++ b/.github/workflows/pr_pipeline.yaml @@ -27,7 +27,6 @@ on: jobs: build: runs-on: ubuntu-latest - container: node:20 strategy: fail-fast: false matrix: @@ -36,6 +35,11 @@ jobs: steps: - uses: actions/checkout@main + - uses: actions/setup-node@main + with: + cache: yarn + node-version: 20 + - run: yarn install - run: yarn lint - run: TARGET=${{ matrix.target }} yarn build