Skip to content

[TO-BE-REVERTED]: Remove all lambdas #1064

[TO-BE-REVERTED]: Remove all lambdas

[TO-BE-REVERTED]: Remove all lambdas #1064

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Lint and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test:unit