Skip to content

Display a correct error message for enum rejections #7

Display a correct error message for enum rejections

Display a correct error message for enum rejections #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master # or the name of your default branch
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run Tests
run: npm test