This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
fix: first message load #141
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: Tests | |
on: | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.head_ref }} | |
jobs: | |
############################################################################## | |
## TEST APPLICATION | |
############################################################################## | |
test: | |
name: Test application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Node setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Run tests | |
run: yarn test |