diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a42d167753..012edbc99b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -168,37 +168,3 @@ jobs: - name: validate run: yarn validate - build-main: - runs-on: ubuntu-latest - needs: [build] - steps: - - uses: actions/checkout@v3 - - - name: Use Node 18 - uses: actions/setup-node@v3 - with: - node-version: '18' - cache: yarn - cache-dependency-path: 'yarn.lock' - # without this this job it passes - # - uses: actions/cache/restore@v3 - # name: Restore build cache - # id: build-cache - # with: - # path: | - # **/dist - # !**/node_modules - # key: ${{ runner.os }}-build-cache-${{ hashFiles('package.json', 'yarn.lock', '**/src/', '!**/node_modules', '!**/dist') }} - - - name: Install Dependencies - run: yarn install --frozen-lockfile --prefer-offline - - run: yarn run build; - - run: git reset --hard; - - run: git fetch -n origin main; - - run: git branch --list; - - run: git reset --hard origin/main; - - run: git reset --hard dccd44fb7182e8c313221135052f1ee178ea6d16; - - run: yarn run clean; - - run: yarn --frozen-lockfile; - - run: yarn build:cli --force; - - run: yarn build