Skip to content

Commit

Permalink
fix: test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszsokola committed Dec 25, 2023
1 parent 56c7017 commit 5cf9e1d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
uses: ./.github/workflows/setup-node

- name: Test 🧪
run: npm run test
run: npm run test-coverage
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
output: "export",
reactStrictMode: true,
};

Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"name": "2048-in-react",
"version": "0.2.0",
"homepage": "https://mateuszsokola.github.io/2048-in-react/",
"author": "Mateusz Sokola (https://mateu.sh/)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-code": "prettier --check .",
"format": "prettier --write .",
"test": "jest --watch"
"test": "jest --watch",
"test-coverage": "jest --coverage --verbose"
},
"dependencies": {
"@types/node": "20.5.1",
Expand Down

0 comments on commit 5cf9e1d

Please sign in to comment.