e2e: fix: make residentialArea
more random as it is prone to conflict
#712
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: Compile, lint and test | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checking out git repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js 18.19 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.19' | |
cache: 'npm' | |
- name: Runs dependency installation | |
run: yarn | |
- name: Compile | |
run: yarn test:compilation | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test |