Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

chore(deps): update dependency sass to v1.64.1 #773

chore(deps): update dependency sass to v1.64.1

chore(deps): update dependency sass to v1.64.1 #773

Workflow file for this run

# Document: https://help.github.com/ja/actions
name: CHECK BUILD
on: [pull_request]
jobs:
app-build:
name: App can be generated
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- run: echo ${{ steps.yarn-cache.outputs.dir }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install --frozen-lockfile
- run: yarn generate
- name: Show file size
uses: actions/upload-artifact@v2
with:
name: WebApplication
path: ./dist