Skip to content

Updated GitHub Actions #24

Updated GitHub Actions

Updated GitHub Actions #24

Workflow file for this run

name: Sass CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout source Git branch
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 10
submodules: 10
- name: Install Dependencies
run: |
cd static
npm install
- name: Compile CSS from SCSS files
uses: gha-utilities/[email protected]
with:
source: ./static/sass/styles.scss
destination: ./static/css/styles.css