Skip to content

Bump simple-keyboard from 3.8.4 to 3.8.5 #5021

Bump simple-keyboard from 3.8.4 to 3.8.5

Bump simple-keyboard from 3.8.4 to 3.8.5 #5021

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- README.md
- .gitignore
- .github/**
jobs:
build:
runs-on: ${{ matrix.os }}
if: contains(github.ref, 'master')
strategy:
matrix:
node-version: [20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build, and test
run: |
export NODE_OPTIONS=--openssl-legacy-provider
npm install
npm run test
env:
CI: true