Skip to content

SGD8-2856: Fix features initially not loading #67

SGD8-2856: Fix features initially not loading

SGD8-2856: Fix features initially not loading #67

Workflow file for this run

name: CI
on:
push:
branches:
- master
- release/*
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2-beta
with:
node-version: '14.x'
- name: install dependencies
run: yarn install
- name: build
run: yarn run build
- name: Autocommit builds
uses: EndBug/add-and-commit@v5
with:
message: "Autocommit builds"
add: "dist -f"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}