Skip to content

[ALEPH-254] feat: Scale card with side image #22

[ALEPH-254] feat: Scale card with side image

[ALEPH-254] feat: Scale card with side image #22

Workflow file for this run

name: Lint code
on:
pull_request:
branches: ['*']
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
run: |
npm config set "@fortawesome:registry" https://npm.fontawesome.com/
npm config set "//npm.fontawesome.com/:_authToken" FONTAWESOME_NPM_AUTH_TOKEN
npm ci
- name: Run linter
run: npm run lint