Skip to content

yeet gulp from build system (involves lots of chaos) #379

yeet gulp from build system (involves lots of chaos)

yeet gulp from build system (involves lots of chaos) #379

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [develop, master]
pull_request:
branches: [develop, master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: curl -O -L https://github.com/sass/dart-sass/releases/download/1.93.2/dart-sass-1.93.2-linux-x64.tar.gz
- run: tar -xzvf dart-sass-*.tar.gz
- run: |
echo PATH=${GITHUB_WORKSPACE}/dart_sass >> $GITHUB_ENV
which sass
npm ci
npm run build