run other scripts + fix always run

This commit is contained in:
itsMapleLeaf
2023-09-27 12:22:09 -05:00
parent 5d96d517df
commit 6ce9241080

View File

@@ -16,7 +16,15 @@ concurrency:
jobs: jobs:
lint: lint:
name: ${{ matrix.script }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script:
- lint
- build
- test
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/cache@v3 - uses: actions/cache@v3
@@ -31,6 +39,6 @@ jobs:
node-version: 18 node-version: 18
cache: pnpm cache: pnpm
- run: pnpm install --frozen-lockfile - run: pnpm install --frozen-lockfile
- run: pnpm run lint - run: pnpm run ${{ matrix.script }}
- uses: stefanzweifel/git-auto-commit-action@v4 - uses: stefanzweifel/git-auto-commit-action@v4
if: true if: always()