feat: improve cookie consent legal texts #1670
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
# | |
# 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 |