Skip to content

Commit 5b8b877

Browse files
committed
feat: Added new integration test for everything
1 parent 2d030f6 commit 5b8b877

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Test all on Demand
5+
6+
on:
7+
schedule:
8+
- cron: '0 0 * * 0' # Every Sunday at midnight UTC
9+
workflow_dispatch:
10+
11+
jobs:
12+
build-and-test:
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
matrix:
17+
os: [ubuntu-latest, macos-latest]
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Use Node.js 22
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: '22.x'
25+
cache: 'npm'
26+
- run: npm ci
27+
- run: npm run test

0 commit comments

Comments
 (0)