Skip to content

feat: Release Next.js 14 compatible version #35

feat: Release Next.js 14 compatible version

feat: Release Next.js 14 compatible version #35

Workflow file for this run

name: Test
on: ['push']
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Packages
run: yarn install
- name: Test
run: yarn test --coverage
- name: Report coverage
uses: coverallsapp/github-action@v1.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}