Merge pull request #2423 from Ecophagy/status-dropdown-empty-in-list-… #3291
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 Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Setup | |
run: npm ci | |
- name: Build | |
run: npm run ci-build | |
- name: Check Code Style | |
run: npm run lint | |