Skip to content

build(deps): bump the minor-and-patch group across 1 directory with 4 updates #850

build(deps): bump the minor-and-patch group across 1 directory with 4 updates

build(deps): bump the minor-and-patch group across 1 directory with 4 updates #850

Workflow file for this run

name: Simulator Testing
on:
push:
branches: [master]
paths:
- "simulator/**"
- "package.json"
- "yarn.lock"
- "esbuild.config.js"
- "jest.config.js"
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
paths:
- "simulator/**"
- "package.json"
- "yarn.lock"
- "esbuild.config.js"
- "jest.config.js"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: "14.18.0"
# Speed up subsequent runs with caching
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
# Install required deps for action
- name: Install Dependencies
run: yarn
# Finally, run our tests
- name: Run the tests
run: yarn test