Update README to put all changes under the right version #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |