mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00

* feat: entry points types * fix: update attachment * feat: more types and command * chore: apply formatting * feat: entry interaction * chore: apply formatting * feat: entry commands * feat: end * fix: build * fix: typing * fix: entry point in handler * fix: build --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
31 lines
589 B
YAML
31 lines
589 B
YAML
name: Transpile code
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Transpile code
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|