Use mantine components in research form, replace custom fileupload co… #1292
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: Lint | |
on: | |
pull_request: | |
jobs: | |
ruby: | |
timeout-minutes: 10 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v3 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Build docker image and run rubocop within it | |
# See https://docs.codecov.io/docs/testing-with-docker | |
run: | | |
./backend/docker/build --ci | |
./backend/docker/rubocop ${{ github.event.pull_request.base.sha }} ${{ github.sha }} | |
typescript: | |
timeout-minutes: 10 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: frontend | |
- name: Run lint | |
working-directory: frontend | |
run: yarn run lint | |
- name: Run typecheck | |
working-directory: frontend | |
run: yarn run typecheck |