Update to PingPong2 so that checking sender_adress against hardcoded #24
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: 'Build, run and test' | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node JS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11 | |
- name: Install dependencies | |
run: yarn | |
- name: Test | |
run: yarn test | |
lintandcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node JS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.11 | |
- name: Install dependencies | |
run: yarn | |
- name: Prettier check | |
run: yarn prettier:check | |
- name: ESLint lint | |
run: yarn lint |