Skip to content

Update index.tsx

Update index.tsx #91

Workflow file for this run

name: build
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: cache
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: install pacakges
run: yarn
- name: build
run: yarn build
- name: upload artifact
uses: actions/upload-artifact@v2
with:
name: static
path: build/