Skip to content

Merge pull request #32 from bundleglobal/generate-client-2024-12-02 #42

Merge pull request #32 from bundleglobal/generate-client-2024-12-02

Merge pull request #32 from bundleglobal/generate-client-2024-12-02 #42

Workflow file for this run

name: tests
on:
push:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
env:
BUNDLE_SOCIAL_API_KEY: ${{ secrets.BUNDLE_SOCIAL_API_KEY }}
BUNDLE_SOCIAL_TEAM_ID: ${{ secrets.BUNDLE_SOCIAL_TEAM_ID }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install packages
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test