Dummy payment #2
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: Pull Request Check | |
on: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Setup Nodejs and checkout code | |
- name: Setup Node.js 18 and checkout code | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
# Install libraries | |
- name: Install dependencies | |
run: npm install && cd web && npm install | |
# Run prettier | |
- name: Run prettier | |
run: npm run format | |
# Run linting | |
- name: Run linting | |
run: npm run lint:fix | |
# Run Backend tests | |
- name: Run Backend tests | |
run: npm run test |