Bump mobx-state-tree from 5.3.0 to 5.4.2 #584
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Community Catalog tests | |
on: | |
# Run this workflow on creation (or sync to source branch) of a new pull request | |
pull_request: | |
# Allow running this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/iron' | |
- run: npm ci | |
- run: npm test |