From 43fb6ff5d35b7c4602b6225e536f12e00efb3263 Mon Sep 17 00:00:00 2001 From: Spicylemon2623 Date: Sat, 29 Nov 2025 02:42:36 +0000 Subject: [PATCH 1/2] AMOLED --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1d6346c..00e1b84 100644 --- a/index.html +++ b/index.html @@ -6,8 +6,8 @@ Flint programming language - -

Work in progress

+ +

Work in progress

From 326d5be8ba8a8c0d92dc0cddb29d1de237ba8842 Mon Sep 17 00:00:00 2001 From: CrabKing <127689590+Crab-K1ng@users.noreply.github.com> Date: Sat, 29 Nov 2025 02:58:17 +0000 Subject: [PATCH 2/2] add tests --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..50a8461 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: Test + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + test: + runs-on: ubuntu-latest + steps: + + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: 'lts/*' + cache: 'npm' + + - name: Install dependencies + run: npm ci + + - name: Run linting + run: npm run lint \ No newline at end of file