Skip to content

Support uri()

Support uri() #27

Workflow file for this run

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
merge_group:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm install
- run: npm run test:regex
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'