release: Version 0.5.2 #43
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: 'Run CI jobs' | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 0 * * 1' | |
jobs: | |
lint: | |
runs-on: 'ubuntu-latest' | |
name: 'Check by linters' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: 'Setup workspace' | |
run: | | |
pnpm install | |
- name: 'Check format' | |
run: | | |
pnpm biome format src | |
test: | |
runs-on: 'ubuntu-latest' | |
name: 'Test sources' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: 'Setup workspace' | |
run: | | |
pnpm install | |
- name: 'Run tests' | |
run: | | |
pnpm test run |