Skip to content

Merge pull request #17 from atlp-rwanda/ch-github-actions-setup #8

Merge pull request #17 from atlp-rwanda/ch-github-actions-setup

Merge pull request #17 from atlp-rwanda/ch-github-actions-setup #8

Workflow file for this run

name: Push Trigger Workflow
on:
push:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '>=18'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test -- --ci