Skip to content

Commit

Permalink
try path to dir
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffGreiner-eaton committed Mar 27, 2024
1 parent cbb8e75 commit 2f6ce92
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions .github/workflows/blui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,60 +31,60 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn --frozen-lockfile
working-directory: login-workflow
working-directory: blui-react-workflows/login-workflow
- run: yarn prettier
working-directory: login-workflow
working-directory: blui-react-workflows/login-workflow
- run: yarn lint
working-directory: login-workflow
working-directory: blui-react-workflows/login-workflow

unit_test:
runs-on: ubuntu-latest
# unit_test:
# runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# strategy:
# matrix:
# node-version: [18.x]

steps:
- 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 --frozen-lockfile
working-directory: login-workflow
- run: yarn test:ci --coverage --watchAll=false
working-directory: login-workflow
- name: Upload to Codecov
uses: codecov/codecov-action@v3
with:
directory: ./coverage/
files: clover.xml
flags: unittests
name: codecov-report
verbose: true
# steps:
# - 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 --frozen-lockfile
# working-directory: login-workflow
# - run: yarn test:ci --coverage --watchAll=false
# working-directory: login-workflow
# - name: Upload to Codecov
# uses: codecov/codecov-action@v3
# with:
# directory: ./coverage/
# files: clover.xml
# flags: unittests
# name: codecov-report
# verbose: true

build:
runs-on: ubuntu-latest
# build:
# runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
# strategy:
# matrix:
# node-version: [18.x]

steps:
- 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 --frozen-lockfile
working-directory: login-workflow
- run: yarn build
working-directory: login-workflow
- name: Save build
uses: actions/upload-artifact@v3
with:
name: dist
if-no-files-found: error
path: dist
# steps:
# - 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 --frozen-lockfile
# working-directory: login-workflow
# - run: yarn build
# working-directory: login-workflow
# - name: Save build
# uses: actions/upload-artifact@v3
# with:
# name: dist
# if-no-files-found: error
# path: dist

0 comments on commit 2f6ce92

Please sign in to comment.