26 lines
446 B
YAML
26 lines
446 B
YAML
name: Run Socket Server Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- all
|
|
# You can adjust the branches as needed
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Run tests
|
|
run: npm test |