Skip to content

Commit

Permalink
simplify status check to save time
Browse files Browse the repository at this point in the history
  • Loading branch information
daretodave committed Apr 25, 2024
1 parent ed11c97 commit edfacc8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 65 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/build.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/lint.yml

This file was deleted.

16 changes: 11 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: MTERM test
name: MTERM

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: test
name: lint + test + build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -24,7 +22,15 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Run test
- name: lint
uses: borales/actions-yarn@v4
with:
cmd: lint
- name: test
uses: borales/actions-yarn@v4
with:
cmd: test
- name: build
uses: borales/actions-yarn@v4
with:
cmd: build

0 comments on commit edfacc8

Please sign in to comment.