Skip to content

Commit

Permalink
feat: provide a fallback string to <PrismicText> (#126)
Browse files Browse the repository at this point in the history
* feat: provide a fallback string to `<PrismicText>`

* chore: install esbuild to fix ci tests

* chore: upgrade dependencies

* chore: rebuild package-lock.json

* chore: rebuild package-lock.json

* chore(ci): use npm 7/8 via node 16

* chore(ci): run coverage and size tasks with node 16
  • Loading branch information
angeloashmore authored Feb 25, 2022
1 parent de1e8df commit e2fb4fc
Show file tree
Hide file tree
Showing 6 changed files with 1,506 additions and 692 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14]
node: [16]

steps:
- uses: actions/setup-node@v2
Expand Down Expand Up @@ -45,11 +45,11 @@ jobs:
run: npm run build

- name: Coverage
if: matrix.os == 'ubuntu-latest' && matrix.node == 14
if: matrix.os == 'ubuntu-latest' && matrix.node == 16
uses: codecov/codecov-action@v1

- name: Size
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 14
if: github.event_name == 'pull_request' && matrix.os == 'ubuntu-latest' && matrix.node == 16
uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit e2fb4fc

Please sign in to comment.