Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Node.js CI/CD
on:
push:
branches:
- main
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn test
- name: Build
run: yarn run build