Skip to content

Commit

Permalink
More descriptive names for build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift committed Nov 26, 2023
1 parent f1e3027 commit 82a8f77
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
name: build
name: Lint, build, and test
on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Checkout the repository

uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: npm install
- run: npm run lint-check
- run: npm run build
- run: npm test
- name: Install npm dependencies
run: npm install
- name: Run linter
run: npm run lint-check
- name: Run TypeScript compiler
run: npm run build
- name: Run tests
run: npm test

0 comments on commit 82a8f77

Please sign in to comment.