Skip to content

chore(release): 1.0.0-beta.0 #1

chore(release): 1.0.0-beta.0

chore(release): 1.0.0-beta.0 #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Dev test
# Controls when the action will run.
on:
# Triggers the workflow on push for the development branch
push:
branches: [dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
dev-test:
if: "!contains(github.event.head_commit.message, '(skip-ci)') && !startsWith(github.event.head_commit.message, 'chore(release)')"
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Use node.js
uses: actions/setup-node@v3
with:
node-version: "20.15.0"
# Runs a set of commands using the runners shell
- name: Install packages
run: |
yarn
- name: Run test
run: yarn test