chore(deps): update dependency sass to v1.79.1 #5139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# schedule: | |
# - cron: "0 23 * * 6" | |
jobs: | |
# test: | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# PLATFORM: | |
# - "ubuntu-latest" | |
# # - "macos-latest" | |
# # - "windows-latest" | |
# NODE: | |
# # - "13" | |
# - "12" | |
# # - "10" | |
# # exclude: | |
# # - PLATFORM: "macos-latest" | |
# # NODE: "12" | |
# name: Test on node ${{ matrix.NODE }} and ${{ matrix.PLATFORM }} | |
# runs-on: ${{ matrix.PLATFORM }} | |
# # needs: [build] | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v2 | |
# with: | |
# node-version: ${{ matrix.NODE }} | |
# - name: Install Dependencies | |
# run: yarn | |
# # - name: Download Artifact | |
# # uses: actions/download-artifact@v2 | |
# # with: | |
# # name: dist | |
# # path: dist | |
# - name: Run Test | |
# run: yarn test-coverage | |
# - name: Upload Coverage | |
# uses: coverallsapp/github-action@master | |
# if: success() | |
# continue-on-error: true | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install Dependencies | |
run: yarn | |
- name: Run Lint | |
run: yarn lint | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install Dependencies | |
run: yarn | |
- name: Build Package | |
run: yarn build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist |