Skip to content

feat(MAG-2599): truncate filename when it doesn't fit #16

feat(MAG-2599): truncate filename when it doesn't fit

feat(MAG-2599): truncate filename when it doesn't fit #16

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main, develop]
jobs:
codebase:
name: Build and lint codebase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build the app
run: yarn build
- name: Lint using ESLint
run: yarn lint