forked from ProjectEvergreen/greenwood
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 751 Bytes
/
Copy pathci-loaders.yml
File metadata and controls
31 lines (27 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Continuous Integration (Loaders)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node: [22, 24]
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 }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: latest
- name: Installing project dependencies
run: |
yarn install --frozen-lockfile && yarn lerna bootstrap
- name: Test
run: |
yarn test:loaders