Skip to content

Feat: Initial commit #3

Feat: Initial commit

Feat: Initial commit #3

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run test
# For more information see: https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-nodejs
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: npm ci
- run: npm run build --if-present
- run: npm test