Skip to content

Commit

Permalink
rebase main
Browse files Browse the repository at this point in the history
  • Loading branch information
amessbee authored Aug 7, 2024
1 parent d53e339 commit 5efc371
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,24 @@ on:
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js 18.8.x
- name: Use Node.js LTS versions
uses: actions/setup-node@v3
with:
# use node 18.8.x until Agoric/agoric-sdk#8636
node-version: "18.8.x"
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn
- name: yarn lint
run: yarn lint
- name: yarn build
run: yarn build
- name: yarn test
run: yarn test --exclude "**/e2e/**"
integration:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -71,4 +75,4 @@ jobs:
path: |
ui/test/e2e/videos
ui/test/e2e/screenshots
continue-on-error: true
continue-on-error: true

0 comments on commit 5efc371

Please sign in to comment.