chore: upgrade dependencies to current stable versions (#257) (#259) #593
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - run: npm install -g yarn yalc | |
| - run: yarn | |
| - run: yarn lint:all | |
| - run: yarn link:sheriff | |
| - run: yarn test:ci | |
| - run: cd test-projects/angular-i && yarn && npx ng lint | |
| - run: cd test-projects/angular-ii && yarn && npx ng lint | |
| - run: cd test-projects/angular-iii && yarn && npx ng lint | |
| - run: ./run-integration-tests.sh | |