Merge pull request #19 from Namchee/chore/jsr #45
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: Lint the files to ensure code quality | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
refresh: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Connect workflow to repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2.4.0 | |
with: | |
version: 8.9.0 | |
- name: Install all required dependencies | |
run: pnpm install | |
- name: Lint and test the files | |
run: pnpm run lint & pnpm run test |