chore(deps): bump ip from 2.0.0 to 2.0.1 in /packages/angular-v15 (#423) #21
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: Testing Components | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
paths: | |
- "packages/**" | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- "packages/**" | |
jobs: | |
dependencies: | |
name: "install dependencies" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout under $GITHUB_WORKSPACE" | |
uses: "actions/checkout@v4" | |
- name: "Set up NodeJS" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: 18 | |
- name: "install dependencies" | |
run: yarn install | |
- name: "generate icon components" | |
run: node generator/index.mjs | |
- name: "Cache files" | |
uses: "actions/cache@master" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
test-angular-v12: | |
name: test angular v12 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v12 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v12 test | |
test-angular-v13: | |
name: test angular v13 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v13 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v13 test | |
test-angular-v14: | |
name: test angular v14 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v14 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v14 test | |
test-angular-v15: | |
name: test angular v15 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v15 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v15 test | |
test-angular-v16: | |
name: test angular v16 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v16 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v16 test | |
test-angular-v17-node18: | |
name: test angular v17 - node 18 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v17 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v17 test | |
test-angular-v17-node20: | |
name: test angular v17 - node 20 | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "install version dependencies" | |
run: yarn --cwd=packages/angular-v17 install | |
- name: "running tests" | |
run: yarn --cwd=packages/angular-v17 test |