Skip to content

fix package name regex #659 #928

fix package name regex #659

fix package name regex #659 #928

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test
timeout-minutes: 1
env:
FORCE_COLOR: 3
win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm i
- run: npm run build
- run: npx uvu test win32
timeout-minutes: 1
env:
FORCE_COLOR: 3