fix(encoding): Throw error when invalid character is used #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github CI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: npm ci --ignore-scripts | |
- name: Run Formatting Checks | |
run: npm run prettier:check | |
- name: Run Linting Checks | |
run: npm run eslint:check | |
- name: Run Tests | |
run: npm run test | |
- name: Run Build | |
run: npm run build |