Skip to content

Change Node in workflows to v18 #26

Change Node in workflows to v18

Change Node in workflows to v18 #26

Workflow file for this run

name: Run integration tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test