Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update xf_ci.yaml #18

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .github/workflows/xf_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,13 @@ jobs:
run: npm install
- name: 'start testing'
run: npm run test
- name: Run eslint
run: npm run eslint
env:
DOTENV_KEY: ${{ secrets.DOTENV_KEY }}
- name: Jest code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: ./coverage/Icon-report
path: ./coverage

js-lint:
runs-on: ubuntu-22.04
Expand All @@ -38,17 +36,18 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm install
- name: Install Dependencies
run: npm install
- name: Run Eslint
- run: npm run eslint

run: npm run eslint
yaml-lint:
name: yaml-lint
name: YAML Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: install yamllint
run: sudo apt-get install -y yamllint
- name: Install yamllint
run: pip install yamllint
- name: Run yamllint
run: yamllint .

Loading