Skip to content

chore: fix bg top repos #272

chore: fix bg top repos

chore: fix bg top repos #272

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CRA RxJS Styled Components CI
on:
push:
branches: [main]
paths:
- "cra-rxjs-styled-components/**"
pull_request:
branches: [main]
paths:
- "cra-rxjs-styled-components/**"
jobs:
# lint:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [16.x]
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Use Node.js
# uses: actions/setup-node@v2
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'npm'
# cache-dependency-path: cra-rxjs-styled-components/package-lock.json
# - name: Install dependencies
# run: npm ci
# working-directory: cra-rxjs-styled-components
# - name: Lint files
# run: npm run lint
# working-directory: cra-rxjs-styled-components
format-check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: cra-rxjs-styled-components/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: cra-rxjs-styled-components
- name: Check formatting
run: npm run format:check
working-directory: cra-rxjs-styled-components
build:
runs-on: ubuntu-latest
needs:
# - lint
- format-check
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: cra-rxjs-styled-components/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: cra-rxjs-styled-components
- name: Build Project
run: npm run build
working-directory: cra-rxjs-styled-components