Skip to content

Bump sass from 1.67.0 to 1.74.1 #463

Bump sass from 1.67.0 to 1.74.1

Bump sass from 1.67.0 to 1.74.1 #463

Workflow file for this run

name: Eslint
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Cache Dependencies
id: yarn_cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
if: steps.yarn_cache.outputs.cache-hit != 'true'
run: yarn install --prefer-offline
- name: Eslint Check
run: yarn lint