Skip to content

Commit

Permalink
Try something else
Browse files Browse the repository at this point in the history
  • Loading branch information
mramato committed Sep 19, 2023
1 parent d8f7834 commit d464656
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18 ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: install node 18
uses: actions/setup-node@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: npm install
run: npm install
- name: eslint
run: npm run eslint
- name: prettier-check
run: npm run prettier-check
- name: test
run: npm run test -- --failTaskOnError --suppressPassed
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run eslint
- run: npm run prettier-check
- run: npm run test -- --failTaskOnError --suppressPassed

0 comments on commit d464656

Please sign in to comment.