Skip to content

Add character mappings for the letter M (#26) #25

Add character mappings for the letter M (#26)

Add character mappings for the letter M (#26) #25

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install Dependencies
run: npm ci
- name: Check Prettier Formatting
run: npm run prettier:check
- name: Check Typescript
run: npm run lint:types
- name: Test
run: npm test -- --coverage --runInBand
- name: Check coverage
uses: codecov/codecov-action@v3