This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Backpack RN upgrade to 0.70.9 #537
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 CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
Build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup NPM | |
run: | | |
nvm install | |
npm ci | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: | | |
nvm use | |
npm test |