fix: double char unicode characters breaking placeholders #49
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: Test | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
name: 'Test' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: npm | |
- name: Install | |
run: npm ci | |
- name: Test | |
run: npm run test | |
static-check: | |
name: Static check 🪲 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: npm | |
- name: Install | |
run: npm ci | |
- name: Eslint | |
run: npm run eslint | |
- name: Typescript | |
run: npm run tsc | |