Skip to content

feat: improve cookie consent legal texts #1670

feat: improve cookie consent legal texts

feat: improve cookie consent legal texts #1670

Workflow file for this run

#
# Continues integration pipeline to test every branch.
#
name: Test
on: pull_request
env:
CI: true
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Unit tests
run: yarn test
- name: Test types
run: yarn test:types
- name: Test linting
run: yarn test:lint
- name: Test formatting
run: yarn test:format