Skip to content

build(dev-deps): update all non-major dependencies #376

build(dev-deps): update all non-major dependencies

build(dev-deps): update all non-major dependencies #376

Workflow file for this run

name: Check
on: push
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 16
- name: Install
run: yarn
- name: Lint
run: npm run test:lint
test_e2e:
name: E2E Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
cache: yarn
node-version: ${{ matrix.node }}
- name: Install
run: yarn
- name: Run end-to-end tests
run: yarn test:e2e