[π€ release]: 0.9.1 (patch) #254
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: 'ci: Code Standards & Testing' | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: Lint & Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: 'β¬οΈ Checkout Code' | |
uses: actions/checkout@v4 | |
- name: 'π Use Node.js' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 'π¦ Install Packages' | |
run: yarn install | |
- name: 'ποΈ Build' | |
run: yarn build | |
- name: 'π¨ Code Formatting' | |
run: yarn analyze:fmt | |
- name: 'βοΈ Code Linting' | |
run: yarn analyze:lint | |
- name: 'π¦ Typecheck' | |
run: yarn analyze:types | |
- name: 'β‘οΈ Test' | |
id: test | |
run: yarn test |