Skip to content

docs(README): add CI status badge to readme #5

docs(README): add CI status badge to readme

docs(README): add CI status badge to readme #5

Workflow file for this run

on:
push:
branches:
- main
- release/*
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js v20.10.0
uses: actions/setup-node@v3
with:
node-version: '20.10.0'
registry-url: https://npm.fontawesome.com/
scope: '@fortawesome'
cache: 'npm'
- name: Install Node Dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_CONFIG_FONT_AWESOME_TOKEN }}
- name: Lint Code with ESLint
run: npm run lint