Merge pull request #140 from scalprum/dependabot/npm_and_yarn/webpack… #127
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: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v4 | |
# cache node modules for all jobs to use | |
- uses: './.github/actions/node-cache' | |
# cache cypress runner | |
- uses: './.github/actions/cypress-cache' | |
- name: Install deps | |
run: npm ci | |
lint: | |
needs: [install] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: './.github/actions/lint' | |
test: | |
runs-on: ubuntu-latest | |
needs: [install] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: './.github/actions/test-unit' | |
test-component: | |
runs-on: ubuntu-latest | |
needs: [install] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: './.github/actions/test-component' | |
build: | |
runs-on: ubuntu-latest | |
needs: [install] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v4 | |
- uses: './.github/actions/node-cache' | |
- name: Install deps | |
run: npm i | |
- name: Build affected | |
run: npx nx affected -t build | |
test-e2e: | |
runs-on: ubuntu-latest | |
needs: [install, build] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: './.github/actions/test-e2e' | |
release: | |
runs-on: ubuntu-latest | |
needs: [install, lint, test, build, test-e2e, test-component] | |
if: github.event_name != 'pull_request' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ssh-key: ${{ secrets.BOTH_AUTH_KEY }} | |
- uses: './.github/actions/release' | |
with: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
npm_token: ${{ secrets.NPM_TOKEN }} | |
gh_name: ${{ secrets.GH_NAME }} | |
gh_email: ${{ secrets.GH_EMAIL }} | |