Skip to content

Commit

Permalink
ci: adapt to changes, update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Apr 14, 2024
1 parent 3d0ec56 commit 3555913
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 22 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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 .
22 changes: 0 additions & 22 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 3555913

Please sign in to comment.