Skip to content

feat: New client !

feat: New client ! #56

Workflow file for this run

---
name: Client
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
build_and_test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/client
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Build
run: yarn build --if-present
- name: Run tests
run: yarn test