Skip to content

Update sass build to avoid errors #54

Update sass build to avoid errors

Update sass build to avoid errors #54

Workflow file for this run

name: Code validation
on:
pull_request:
branches:
- master
jobs:
code-validation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Restore cached dependencies
id: cache-restore
uses: actions/cache@v4
with:
path: ./src/AKCore/node_modules
key: npm-${{ hashFiles('./src/AKCore/package-lock.json') }}
- name: Install dependencies
if: steps.cache-restore.outputs.cache-hit != 'true'
run: |
cd src/AKCore
npm ci - ignore-scripts
- name: Lint
run: |
cd src/AKCore
npm run lint
- name: Typecheck
run: |
cd src/AKCore
npm run typecheck