Skip to content

Commit

Permalink
4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Apr 16, 2022
1 parent 29b8faf commit 48a247d
Show file tree
Hide file tree
Showing 8 changed files with 18,764 additions and 1,480 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ReScript

Fix npm description

## 3.1.0 - 2020-11-12
## 3.1.0 - 2020-11-16

- 3.1.0 compat
- rescript-react-native 0.63
Expand Down
Loading

0 comments on commit 48a247d

Please sign in to comment.