Skip to content

Commit

Permalink
chore:split out jobs again
Browse files Browse the repository at this point in the history
  • Loading branch information
jisted-scottlogic committed Apr 11, 2024
1 parent 530b78f commit d9f23f8
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
pull_request:
branches: ['master']

jobs:
build:
runs-on: ubuntu-latest

steps:
Expand All @@ -17,10 +19,17 @@ on:
with:
node-version: latest

- name: Install dependencies
run: npm ci

- name: Build
run: |
npm ci
npm run bundle
npm run bundle-min
- name: Lint
run: |
npm run commitlint
npm run lint
- name: Test
run: |
npm test

0 comments on commit d9f23f8

Please sign in to comment.