Merge pull request #229 from etn-ccis/dependabot/npm_and_yarn/react-n… #98
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: Build | |
on: | |
push: | |
branches: [ "dev", "master" ] | |
pull_request: | |
branches: [ "dev", "master" ] | |
pull_request_target: | |
types: | |
- opened | |
branches: | |
- '*/*' | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
angular_progress_icons: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: angular/components | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: angular/demos/showcase | |
- run: yarn prettier:check | |
working-directory: angular/components | |
- run: yarn prettier:check | |
working-directory: angular/demos/showcase | |
- run: yarn lint | |
working-directory: angular/components | |
- run: yarn lint | |
working-directory: angular/demos/showcase | |
- run: yarn test:ci | |
working-directory: angular/components | |
- run: yarn test:ci | |
working-directory: angular/demos/showcase | |
- run: yarn build | |
working-directory: angular/components | |
- name: Save angular progress icon build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: angular-dist | |
if-no-files-found: error | |
path: angular/dist | |
react_progress_icons: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: react/icons | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: react/demo | |
- run: yarn prettier:check | |
working-directory: react/icons | |
- run: yarn prettier:check | |
working-directory: react/demo | |
- run: yarn lint | |
working-directory: react/icons | |
- run: yarn lint | |
working-directory: react/demo | |
- run: yarn test | |
working-directory: react/icons | |
- run: yarn test | |
working-directory: react/demo | |
- run: yarn build | |
working-directory: react/icons | |
- name: Save react progress icon build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: react-dist | |
if-no-files-found: error | |
path: react/icons/dist | |
rn_progress_icons: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: react-native | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --immutable | |
working-directory: react-native/demo | |
- run: yarn prettier:check | |
working-directory: react-native | |
- run: yarn prettier:check | |
working-directory: react-native/demo | |
- run: yarn lint | |
working-directory: react-native | |
- run: yarn lint | |
working-directory: react-native/demo | |
- run: yarn test | |
working-directory: react-native | |
- run: yarn test | |
working-directory: react-native/demo | |
- run: yarn build | |
working-directory: react-native | |
- name: Save rn progress icon build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rn-dist | |
if-no-files-found: error | |
path: react-native/dist | |
publish_angular_progress_icons: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | |
needs: angular_progress_icons | |
strategy: | |
matrix: | |
node-version: [18.x] | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download angular progress icons package | |
uses: actions/download-artifact@v3 | |
with: | |
name: angular-dist | |
path: angular/dist | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
- run: yarn --immutable | |
working-directory: angular/components | |
- run: npm run publish:package -- -b ${{env.BRANCH}} | |
working-directory: angular/components | |
publish_react_progress_icons: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | |
needs: react_progress_icons | |
strategy: | |
matrix: | |
node-version: [18.x] | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download react progress icons package | |
uses: actions/download-artifact@v3 | |
with: | |
name: react-dist | |
path: react/icons/dist | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
- run: yarn --immutable | |
working-directory: react/icons | |
- run: npm run publish:package -- -b ${{env.BRANCH}} | |
working-directory: react/icons | |
publish_rn_progress_icons: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | |
needs: rn_progress_icons | |
strategy: | |
matrix: | |
node-version: [18.x] | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download react progress icons package | |
uses: actions/download-artifact@v3 | |
with: | |
name: rn-dist | |
path: react-native/dist | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
- run: yarn --immutable | |
working-directory: react-native | |
- run: npm run publish:package -- -b ${{env.BRANCH}} | |
working-directory: react-native |