Skip to content

update-dependencies

update-dependencies #4

Workflow file for this run

name: Run Test
on:
push:
paths-ignore:
- 'README.md'
branches: [ xio ]
pull_request:
branches: [ xio ]
type: [ closed ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
- name: Install Dependecies
run: npm ci
- name: Run test
run: npm test