Skip to content

Commit

Permalink
Merge pull request #7 from ajmarcus/ci-name
Browse files Browse the repository at this point in the history
add ci names
  • Loading branch information
ajmarcus authored Jan 12, 2024
2 parents bcbfae0 + 9c40015 commit 2f2be2b
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,18 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm test

- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build --if-present
- name: Test
run: npm test

0 comments on commit 2f2be2b

Please sign in to comment.