Merge branch 'master' into select-options-by-id #1
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: 'Jest unit tests' | |
on: | |
push: | |
paths-ignore: | |
- '**/dist/**' | |
- '**/*.md' | |
- '.github/**' | |
- '.vscode/**' | |
pull_request: | |
branches: | |
- develop | |
paths-ignore: | |
- '**/dist/**' | |
- '**/*.md' | |
- '.github/**' | |
- '.vscode/**' | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '21.5.0' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run test |