Release 0.3.1 #143
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: Tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ | |
18.x | |
] | |
fontawesome-svg-core: [ | |
1.2.x, | |
6.x | |
] | |
react-native: [ | |
0.68.x, | |
0.67.x | |
] | |
react-native-svg: [ | |
11.x, | |
12.x | |
] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: npm install and test | |
run: | | |
sudo apt-get install -y jq | |
npm install -g npm | |
npm install | |
npm install --no-save @fortawesome/fontawesome-svg-core@${{ matrix.fontawesome-svg-core }} react-native@${{ matrix.react-native }} | |
export REACT_VERSION=`cat node_modules/react-native/package.json|jq -r .peerDependencies.react` | |
npm install --no-save react@${REACT_VERSION} react-dom@${REACT_VERSION} react-test-renderer@${REACT_VERSION} | |
npm list react react-dom react-test-renderer react-native-svg | |
npm run lint | |
npm test |