RESTfulMC/.gitea/workflows/deploy-lib.yml

42 lines
801 B
YAML
Raw Normal View History

2024-04-14 13:15:47 -07:00
name: Deploy Lib
on:
push:
branches: ["master"]
2024-04-14 13:22:40 -07:00
paths: [".gitea/workflows/deploy-lib.yml", "Lib/**"]
2024-04-14 13:15:47 -07:00
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-latest"]
git-version: ["2.44.0"]
runs-on: ${{ matrix.arch }}
defaults:
run:
working-directory: ./Lib
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
2024-04-14 13:19:18 -07:00
# Setup Bun
- name: Setup Bun
uses: oven-sh/setup-bun@v1
2024-04-14 13:15:47 -07:00
2024-04-14 13:33:44 -07:00
# Install Dependencies
- name: Install Dependencies
run: bun install
2024-04-14 13:19:18 -07:00
# Run Tests
- name: Run Tests
run: bun test
# Publish to NPM
2024-04-14 13:15:47 -07:00
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}