Skip to content

Only show the necessary tiles in the answer input control #7

Only show the necessary tiles in the answer input control

Only show the necessary tiles in the answer input control #7

name: Continous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Yarn
run: |
npm i -g yarn
- name: Install dependencies
run: |
yarn --frozen-lockfile --production=false
- name: Run linter
run: |
yarn lint
#- name: Run unit tests
# run: |
# yarn test:unit
- name: Test application build
run: |
yarn build
- name: Test Docker build
run: |
docker build -t ci:local .