Skip to content

chore(deps-dev): bump sass from 1.77.0 to 1.77.1 #1320

chore(deps-dev): bump sass from 1.77.0 to 1.77.1

chore(deps-dev): bump sass from 1.77.0 to 1.77.1 #1320

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 18.17.0
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node
- run: yarn install
- run: yarn build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 18.17.0
- run: yarn install
- run: ./node_modules/.bin/npm-install-peers
- run: yarn test && ./node_modules/.bin/codecov -t ${{secrets.CODECOV_REPO_TOKEN}}