Skip to content

Commit

Permalink
feat: upgrade to Next 13 (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Oct 27, 2022
1 parent a1d48f6 commit dad18ac
Show file tree
Hide file tree
Showing 3 changed files with 995 additions and 1,654 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,26 @@ jobs:
license-check: true
license-check-allowed-additional: CC-BY-4.0;CC0-1.0
lint: true

test12:
name: 'Run tests using Next@12'
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [ 14, 16, 18 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]

steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i --ignore-scripts
- run: npm install next@12
- run: npm test
Loading

0 comments on commit dad18ac

Please sign in to comment.