From d0c26944479fdf56e099cc0ca79c1624a60e836d Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 22 Oct 2023 06:06:53 +0200 Subject: [PATCH 1/2] CI --- .github/workflows/test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..4fb9ae3 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Test + +on: + push: + branches: ['main'] + pull_request: + branches: ['main'] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18.x + - run: yarn + - run: yarn check + - run: yarn jest From e620eaf659c1ec3806f9fcd0385129931314f434 Mon Sep 17 00:00:00 2001 From: Emily Date: Sun, 22 Oct 2023 06:24:58 +0200 Subject: [PATCH 2/2] next-env --- .gitignore | 1 - next-env.d.ts | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 next-env.d.ts diff --git a/.gitignore b/.gitignore index 5bb3ee5..052f14f 100644 --- a/.gitignore +++ b/.gitignore @@ -42,4 +42,3 @@ yarn-error.log* # typescript *.tsbuildinfo -next-env.d.ts diff --git a/next-env.d.ts b/next-env.d.ts new file mode 100644 index 0000000..4f11a03 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information.