fix: esm module #6
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: Quality Check | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Quality Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install deps | |
run: yarn --immutable | |
- name: Build the code | |
run: yarn run build | |
- name: Run ESLint | |
run: yarn run lint | |
- name: Run Jest Tests | |
run: yarn run test |