Release v1.4.0 #22
Workflow file for this run
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: "π§ͺ unit-test" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
release: | |
name: π§ͺ unit-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- name: Install dependencies | |
run: yarn install -D | |
- name: Install react | |
run: yarn add [email protected] | |
- name: Install react-native | |
run: yarn add [email protected] | |
- name: Test | |
run: yarn test |