Skip to content

feature: use css syntax highlighting for scss #2

feature: use css syntax highlighting for scss

feature: use css syntax highlighting for scss #2

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
jobs:
pr:
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: actions/cache@v4
id: npm-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: npm ci
run: npm ci
if: steps.npm-cache.outputs.cache-hit != 'true'
- run: npm test