Skip to content

feat: add workflow

feat: add workflow #1

Workflow file for this run

name: CI - Node.js
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run Tests
run: |
node index.js