Skip to content

fix: disable freezed columns for inner/child table #12

fix: disable freezed columns for inner/child table

fix: disable freezed columns for inner/child table #12

Workflow file for this run

name: Release
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Repository
uses: actions/checkout@v2
with:
ref: master
- name: Get Node Version
id: node_version
run: |
node_version=`cat .nvmrc`
echo "::set-output name=node_version::$node_version"
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.node_version }}
- name: Cache Yarn Dependencies
id: cache-yarn-dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ env.NVMRC }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Yarn Dependencies if not cached
if: steps.cache-yarn-dependencies.outputs.cache-hit != 'true'
run: |
yarn
- name: Build Project
run: |
yarn build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
dist
./package.json
commit-build:
needs: build
runs-on: ubuntu-latest
steps:
- name: Set up Repository
uses: actions/checkout@v2
with:
ref: release
- name: Download Build
uses: actions/download-artifact@v3
with:
name: artifacts
- name: Commit and Push
run: |
if [ $(git status . --porcelain=v1 2>/dev/null | wc -l) != "0" ] ; then
git config user.name "GitHub Actions"
git config user.email [email protected]
git add .
git commit -m "chore: updated build"
git push origin HEAD --force
fi