This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
chore: Update actions/checkout action to v4 #99
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: CICD | |
on: | |
pull_request: | |
push: | |
branches: master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile | |
- name: Build | |
run: yarn build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn lint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- react-version: "^16" | |
immutable-version: "^3" | |
- react-version: "^16" | |
immutable-version: "^4.0.0-rc.1" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile | |
- name: Install React & Immutable | |
run: yarn add --dev react@${{ matrix.react-version }} react-dom@${{ matrix.react-version }} immutable@${{ matrix.immutable-version }} | |
- name: Test (React ${{ matrix.react-version}}, Immutable ${{ matrix.immutable-version }}) | |
run: yarn test --coverage | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: test-coverage | |
path: coverage | |
coverage: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn --frozen-lockfile | |
- uses: actions/download-artifact@v2 | |
with: | |
name: test-coverage | |
- run: yarn coverage | |
website: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: website/node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./website/yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
working-directory: website | |
run: | | |
yarn | |
yarn build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: website-build | |
path: website/build | |
website_deploy: | |
runs-on: ubuntu-latest | |
needs: website | |
if: ${{ github.ref == 'master' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v2 | |
with: | |
name: website-build | |
- uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: website/node_modules/ | |
key: ${{ runner.os }}-${{hashFiles('./website/yarn.lock')}} | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
working-directory: website | |
run: | | |
yarn | |
git config --global user.email "ci-immutable-props@users.noreply.github.com" | |
git config --global user.name "CI Immutable Props" | |
yarn publish-gh-pages | |