Skip to content

Merge branch 'master' of github.com:postalsys/gettext #5

Merge branch 'master' of github.com:postalsys/gettext

Merge branch 'master' of github.com:postalsys/gettext #5

Workflow file for this run

name: Run tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
node: [20.x, 22.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- name: Run tests
run: npm test