Skip to content

Rebuild dist

Rebuild dist #13

Workflow file for this run

name: GitHub Action Slack Notify CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js v16.x
uses: actions/setup-node@v1
with:
node-version: 16
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: yarn install and test
run: |
yarn
yarn test
env:
CI: true
- name: yarn build
run: yarn build