Skip to content

chore(deps): update dependency style-loader to v4 #2537

chore(deps): update dependency style-loader to v4

chore(deps): update dependency style-loader to v4 #2537

Workflow file for this run

name: Lint & Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable --prefer-offline
- name: Check types
run: yarn typecheck
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test:ci
- name: Build frontend
run: yarn build