Skip to content

Remove custom cache from CI #934

Remove custom cache from CI

Remove custom cache from CI #934

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint TS and CSS
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Setup node env
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 20
- name: Install dependencies
run: npm ci --no-audit
- name: Build for production
run: npm run build:production
- name: Run ESLint
run: npm run lint