Skip to content

Lazy initialize StyleSheet for better handling #5

Lazy initialize StyleSheet for better handling

Lazy initialize StyleSheet for better handling #5

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
tests:
uses: ./.github/workflows/tests.yml
secrets: inherit
release:
if: github.repository == 'nerdslabs/teiler'
permissions:
contents: write # to create release (changesets/action)
pull-requests: write # to create pull request (changesets/action)
needs: [tests]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 20.x
- uses: actions/cache@v3
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: yarn changeset:version
publish: yarn changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}