This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
Add protocol message Acknowledgements - enable L2 payments #164
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: Yarn test | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: "yarn" | |
node-version: "20.5.0" | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn lint:check | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test |