Add types to package.json exports for bundler resolution mode #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: Pull Request Update | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# eslint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Install 🔧 | |
# run: npm ci --audit=false | |
# - name: Run ESLint | |
# run: npm run lint | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install 🔧 | |
run: npm ci --audit=false | |
- name: Run Check | |
run: npm run check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install 🔧 | |
run: npm ci --audit=false | |
- name: Run Test | |
run: npm run test-run |