Skip to content

chore: update version #37

chore: update version

chore: update version #37

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: node bin/create-midway-dev.js --type=web my_midway_app
- run: cd my_midway_app && npm install && npm run test
build-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [12.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: node bin/create-midway.js --type=web my_midway_app
- run: cd my_midway_app && npm install && npm run test