chore(deps-dev): bump @babel/core from 7.29.0 to 7.29.6 #105
This file contains hidden or 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: Test CI | |
| on: | |
| pull_request: | |
| branches: ['*'] | |
| push: | |
| branches: ['dev', 'staging', 'main'] | |
| jobs: | |
| test: | |
| name: Test on Push / Pull-Request | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| # checkout the repository | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # setup node | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache-dependency-path: package-lock.json | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| # install dependencies | |
| - name: Install dependencies | |
| run: npm ci | |
| # run code formatter | |
| - name: Code Formatter | |
| run: npm run format | |
| # run lint test | |
| - name: Lint Test | |
| run: npm run lint | |
| # run unit test | |
| - name: Unit Test | |
| run: npm run test |