Skip to content

Move the documentation to the GitHub wiki #14

Move the documentation to the GitHub wiki

Move the documentation to the GitHub wiki #14

Workflow file for this run

name: continuous-integration
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Fetch sources
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: 22
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: curl, intl, mbstring, simplexml
php-version: 8.3
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
env:
NODE_ENV: test