Skip to content

feat: Make background white, increase dropshadow on cards. #153

feat: Make background white, increase dropshadow on cards.

feat: Make background white, increase dropshadow on cards. #153

Workflow file for this run

name: NodeJS
on:
push:
branches: ['**']
jobs:
complete:
if: always()
needs: [build-and-test]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '${{ steps.nvm.outputs.NVMRC }}'
- name: Install dependencies
run: npm ci
- name: Biome lint check
run: npm run lint:check
- name: Prettier format check
run: npm run format:check