From eb0aec806ae67bec689685e6d9b0314abe45f760 Mon Sep 17 00:00:00 2001 From: Jake Teton-Landis Date: Sun, 24 Dec 2023 10:12:47 -0800 Subject: [PATCH] update CI --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 85715595..06c7a080 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 @@ -57,8 +57,11 @@ jobs: - name: Build run: yarn build + - name: Check types + run: yarn check:types + - name: Test - run: yarn test-all + run: yarn test:slow - name: Test release with NodeJS/Typescript example run: yarn smoketest-node @@ -66,5 +69,5 @@ jobs: - name: Test release with create-react-app/Typescript example run: yarn smoketest-cra - - name: Prettier - run: yarn run prettier-check + - name: Check format + run: yarn check:format