Skip to content

Bump sinon from 16.0.0 to 17.0.0 #104

Bump sinon from 16.0.0 to 17.0.0

Bump sinon from 16.0.0 to 17.0.0 #104

Workflow file for this run

name: 'HATETRIS build and test'
on:
pull_request:
branches:
- '**'
workflow_dispatch:
inputs: {}
jobs:
build-job:
runs-on: 'ubuntu-latest'
strategy:
matrix:
node-version: ['18.x', '20.x']
steps:
- uses: 'actions/checkout@v2'
- name: 'Use Node.js ${{ matrix.node-version }}'
uses: 'actions/setup-node@v1'
with:
node-version: '${{ matrix.node-version }}'
- name: 'Actual npm tasks'
run: |
npm install
npm run eslint
npm run tsc
npm run mocha
npm run cypress
npm run build
npm run cypress-built