Skip to content

Commit

Permalink
ci: πŸ‘· add QA pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Ruck <[email protected]>
  • Loading branch information
Manuel Ruck authored and ManAnRuck committed Jun 9, 2024
1 parent d27dde4 commit 55ba0e7
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: πŸ§‘β€πŸŒΎ QA
on:
push:
workflow_dispatch:

jobs:
QA:
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout repository
uses: actions/[email protected]

- name: πŸš€ Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16

- name: πŸ“¦ Cache dependencies
uses: actions/cache@v2
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: πŸ“¦ Install dependencies
run: yarn install

- name: πŸ§ͺ Lint
run: yarn lint

- name: πŸ§ͺ Test
run: yarn test

- name: πŸ—οΈ Build
run: yarn build

0 comments on commit 55ba0e7

Please sign in to comment.