Skip to content

test: πŸ§ͺ add integration tests #31

test: πŸ§ͺ add integration tests

test: πŸ§ͺ add integration tests #31

Workflow file for this run

name: πŸ§‘β€πŸŒΎ QA
on:
push:
workflow_dispatch:
jobs:
QA:
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout repository
uses: actions/checkout@v4
- name: πŸš€ Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: πŸ“¦ Cache dependencies
uses: actions/cache@v4
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