Skip to content

Commit

Permalink
12.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Apr 16, 2022
1 parent 09c9573 commit 412a476
Show file tree
Hide file tree
Showing 7 changed files with 19,008 additions and 1,476 deletions.
38 changes: 17 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,23 @@ name: Build
on: [push, pull_request]

jobs:
build:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version:
- 14.x
- 16.x

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version-file: ".node-version"

- uses: actions/cache@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
yarn install \
--non-interactive \
--frozen-lockfile
- name: Test
run: yarn test
env:
CI: true
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install -g npm && npm --version

- run: npm ci

- run: npm test
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
# node
node_modules

# npm unused lock file (we use yarn.lock)
package-lock.json

# ReScript artifacts
# *.bs.js # we do want this files to ensure zero-cost
.bsb.lock
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12
16
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog of `@rescript-react-native/svg`

## 12.1.9 - 2022-04-16

- Simplify peerDependencies

## 12.1.8 - 2021-06-20

- Added touch event props [#9](https://github.com/rescript-react-native/svg/pull/9) by [@reck753](https://github.com/reck753)
Expand Down
Loading

0 comments on commit 412a476

Please sign in to comment.