Skip to content

Commit

Permalink
fix: js workflow typo
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <norman@berty.tech>
  • Loading branch information
n0izn0iz committed Jan 6, 2022
1 parent aec4b76 commit 9c46865
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,24 @@ on:
- master
pull_request:

build-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node:
#- 10.x
#- 12.x
- 14.x
steps:
- uses: actions/checkout@v2.4.0
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2.5.0
with:
node-version: ${{ matrix.node }}
- name: Install node modules
working-directory: rn
run: yarn
- name: Lint
working-directory: rn
run: yarn lint
jobs:
build-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node:
#- 10.x
#- 12.x
- 14.x
steps:
- uses: actions/checkout@v2.4.0
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2.5.0
with:
node-version: ${{ matrix.node }}
- name: Install node modules
working-directory: rn
run: yarn
- name: Lint
working-directory: rn
run: yarn lint

0 comments on commit 9c46865

Please sign in to comment.