IT-5863 tile and datepickers with boarders #2503
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test-frontend: | |
name: Frontend tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Insert auth font awesome auth token | |
run: echo "@fortawesome:registry=https://npm.fontawesome.com/" > .npmrc && echo "//npm.fontawesome.com/:_authToken=${{ secrets.FONT_AWESOME_AUTH_TOKEN }}" >> .npmrc | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.9.0' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --pure-lockfile | |
- name: TypeScript check | |
run: yarn ts:check | |
- name: Run unit tests | |
run: yarn test | |
- name: Lint TS/JS/Vue files | |
run: yarn lint:scripts | |
- name: Lint styles | |
run: yarn lint:styles | |
- name: Prettier check | |
run: yarn format:check | |
- name: Build storybook | |
run: yarn storybook:build |