Add dist/ to .gitignore to exclude distribution files from version co… #1865
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: basic tests | |
on: | |
push: | |
branches: | |
- 'user/**' | |
- 'feature/**' | |
- 'improvement/**' | |
- 'bugfix/**' | |
- 'w/**' | |
- 'q/**' | |
- 'hotfix/**' | |
- 'dependabot/**' | |
pull_request: | |
types: | |
- opened | |
branches: | |
- 'feature/bump-core-ui-version-to-**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run test | |
- run: npm run lint |