Skip to content

Merge pull request #26 from myl7/web-next-example #67

Merge pull request #26 from myl7/web-next-example

Merge pull request #26 from myl7/web-next-example #67

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, v18.16, '*']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: npm install --no-package-lock
- run: npm test