Skip to content

feat(Cognito): add helpers, matchers and utils #128

feat(Cognito): add helpers, matchers and utils

feat(Cognito): add helpers, matchers and utils #128

Workflow file for this run

name: Continuous Integration
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
checks:
name: Checks and Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typechecking
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Running tests
run: npm run test