Skip to content

chore/restore intermittent failing Window Loaders GIHub Actions for latest Node LTS upgrade #2395

chore/restore intermittent failing Window Loaders GIHub Actions for latest Node LTS upgrade

chore/restore intermittent failing Window Loaders GIHub Actions for latest Node LTS upgrade #2395

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Install Chromium Library Dependencies
run: |
sh ./.github/workflows/chromium-lib-install.sh
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile && yarn lerna bootstrap
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test
- name: Build
run: |
yarn clean && yarn build