Merge pull request #1346 from Tonomy-Foundation/hotfix/master-round-e… #2348
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: push | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: 🏗 Setup repo | |
uses: actions/checkout@v4 | |
- name: Enable Corepack before setting up Node | |
run: corepack enable | |
- name: 📦 Build, test and lint | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.3.0 | |
- run: yarn --immutable | |
- run: yarn run test | |
- run: yarn run lint | |
- run: yarn run typeCheck |