feat: add template method bad practice #51
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
jobs: | |
master: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- run: npm ci | |
- uses: nrwl/nx-set-shas@v4 | |
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud | |
# - run: npx nx-cloud record -- echo Hello World | |
- run: npx nx affected -t --no-cloud --base=remotes/origin/master~1 --head=remotes/origin/master lint test build | |
- run: npm run test:cov | |
- name: Upload results to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |