Skip to content

Replace deprecated node-sass with sass. #80

Replace deprecated node-sass with sass.

Replace deprecated node-sass with sass. #80

Workflow file for this run

name: CI for Node.js React Sample App
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Install server
run: yarn --cwd server install
- name: Install client
run: yarn --cwd client install
- name: Lint server source
run: yarn --cwd server lint
- name: Lint client source
run: yarn --cwd client lint