Skip to content

build: Provide combined CSS output file for distribution #488

build: Provide combined CSS output file for distribution

build: Provide combined CSS output file for distribution #488

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- master
- beta
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install
run: yarn install --frozen-lockfile
# Install your linters here
- name: Run linters
uses: wearerequired/lint-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
eslint: true
auto_fix: true
git_name: github-actions[bot]
git_email: github-actions[bot]@users.noreply.github.com
- name: Build project
run: npm run build
- name: Run stylelint
run: npm run stylelint:dist