ci: adapt to changes, update actions #19
Workflow file for this run
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: Quality assurance | |
on: | |
- push | |
env: | |
PNPM_VERSION: '8.13.1' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build check | |
run: pnpm build | |
- name: Spell check | |
run: pnpm spell-check | |
- name: Docker build check | |
run: docker build . |