Skip to content

ci: Automatically update package version in publish workflow before p… #10

ci: Automatically update package version in publish workflow before p…

ci: Automatically update package version in publish workflow before p… #10

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm test
- name: Run Build
run: npm run build