Fixed #488 Validation errors are shown as "Server communication error" #486
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: CI | |
on: | |
- pull_request | |
- push | |
jobs: | |
ci: | |
name: Continuous integration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'current' | |
- name: Install dependencies | |
run: yarn install | |
- name: Check build | |
run: yarn build | |
- name: Check coding standards | |
run: yarn lint | |
- name: Run tests | |
run: yarn test |