Skip to content

Merge pull request #508 from gcoxmoz/mozorg #227

Merge pull request #508 from gcoxmoz/mozorg

Merge pull request #508 from gcoxmoz/mozorg #227

Workflow file for this run

name: Test Rules
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-rules:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Test Rules
run: npm run tests