Skip to content

update version number #12

update version number

update version number #12

Workflow file for this run

# CI workflow used for code quality checks and to ensure that a PR can be built.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-table-webview:
name: Build table-webview
runs-on: ubuntu-latest
defaults:
run:
working-directory: table-webview
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: yarn
- run: yarn build