Skip to content

Update README to put all changes under the right version #88

Update README to put all changes under the right version

Update README to put all changes under the right version #88

Workflow file for this run

name: Build and Test
on:
push:
branches: [master]
pull_request:
branches: [master]
release:
types: [created]
workflow_dispatch:
jobs:
build_and_test:
name: ${{ matrix.name }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
include:
- os: macos-latest
name: MacOS
- os: ubuntu-latest
name: Ubuntu
- os: windows-latest
name: Windows
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install Node.js
uses: actions/[email protected]
with:
node-version: 18.x
- name: Install
run: npm install
- name: Build
run: npm run webpack
- name: Test
uses: GabrielBB/[email protected]
with:
run: npm test