feat(skcm): add missing exports condition #40
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: Check linter in PRs | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # [email protected] | |
- name: Install Nodejs | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # [email protected] | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
- name: Install modules | |
run: pnpm i | |
- name: Run Prettier ESLint check | |
run: pnpm lint |