Skip to content

Removed early access warning #38

Removed early access warning

Removed early access warning #38

Workflow file for this run

name: Build
on:
push:
branches:
- main
- v1.X
pull_request:
branches:
- main
- v1.X
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
run-build:
name: Run build
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Check out git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: "yarn"
- name: Install yarn dependencies
run: yarn install
- name: Build
run: yarn build