fix pod #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node Environment | |
on: [push, pull_request] | |
jobs: | |
node-lint-tests: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: install node_modules | |
run: | | |
yarn install --frozen-lockfile | |
yarn --cwd example/RNBGUExample install --frozen-lockfile | |
- name: node lint | |
run: | |
yarn lint:ci |