Skip to content

Fix typo in main.cjs #27

Fix typo in main.cjs

Fix typo in main.cjs #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Linting
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn build
- name: Run all linters
run: yarn lint
unit-tests:
name: Unit tests
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test