Skip to content

Bump mocha from 10.8.2 to 11.0.1 (#1881) #2472

Bump mocha from 10.8.2 to 11.0.1 (#1881)

Bump mocha from 10.8.2 to 11.0.1 (#1881) #2472

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: |
yarn run lint:js
yarn test
env:
CI: true