Skip to content

Commit

Permalink
Bump NodeJS version for autobuilders
Browse files Browse the repository at this point in the history
  • Loading branch information
Malacath-92 committed Jun 21, 2023
1 parent f4647c6 commit a6df692
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/BuildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,45 +2,45 @@ name: Build and Test

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]
release:
types: [ created ]
types: [created]

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
- os: macos-latest
name: MacOS
- os: ubuntu-latest
name: Ubuntu
- os: windows-latest
name: Windows

runs-on: ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v2.2.0

- name: Install Node.js
uses: actions/setup-node@v1.4.4
with:
node-version: 10.x
- name: Install
run: npm install
- name: Build
run: npm run webpack
- name: Test
uses: GabrielBB/xvfb-action@v1.0
with:
run: npm test
- name: Checkout
uses: actions/checkout@v2.2.0

- name: Install Node.js
uses: actions/setup-node@v1.4.4
with:
node-version: 18.x

- name: Install
run: npm install

- name: Build
run: npm run webpack

- name: Test
uses: GabrielBB/xvfb-action@v1.0
with:
run: npm test

0 comments on commit a6df692

Please sign in to comment.