From 960ac05650e20fb367adc9dc08a518846248ff18 Mon Sep 17 00:00:00 2001 From: Artur Akmalov Date: Mon, 22 May 2023 00:49:56 +0500 Subject: [PATCH] fix --- .github/workflows/node.js.yml | 43 ++++++++++++----------------------- 1 file changed, 15 insertions(+), 28 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 3e0de26..13a35b5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,37 +1,24 @@ -# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs - -name: Node.js CI +name: Build on: push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + env: + ORGANIZATION_NAME: ${{ secrets.ORGANIZATION_NAME }} + REPOSITORY_NAME: ${{ secrets.REPOSITORY_NAME }} + SITE_TITLE: ${{ secrets.SITE_TITLE }} + SITE_URL: ${{ secrets.SITE_URL }} steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build --if-present - - - name: Deploy with gh-pages - run: | - git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - npm run deploy-ghp -- -u "github-actions-bot " - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: "18" + cache: "npm" + - run: npm ci + - run: npm run typecheck + - run: npm run format:check + - run: npm run build \ No newline at end of file