Skip to content

fix: fix typo in error message #252

fix: fix typo in error message

fix: fix typo in error message #252

Workflow file for this run

name: Build
on:
push:
branches:
- main
paths:
- 'src/**'
- 'package.json'
- '.github/workflows/build.yml'
jobs:
build:
name: Build compiled JS version
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm install
- name: Compile TypeScript into compressed JavaScript
run: npm run build
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
add: lib
message: '[auto] build: update compiled version'
push: --force