Skip to content

Update Vite notice on node: protocol imports #63

Update Vite notice on node: protocol imports

Update Vite notice on node: protocol imports #63

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 10
- 12
- 16
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check types
run: npm run lint:types
- name: Test
run: npm test