Skip to content

bump version

bump version #6

Workflow file for this run

name: Build
on:
workflow_dispatch: null
push:
branches:
- main
tags-ignore:
- '**'
pull_request:
branches:
- main
env:
NODE_VERSION: 18
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v3
- name: Set up NodeJS ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Trunk Check
uses: trunk-io/[email protected]
with:
trunk-token: ${{ secrets.TRUNK_TOKEN }}
- name: Build
run: yarn package