This commit is contained in:
Artur Akmalov
2023-05-22 00:49:56 +05:00
parent 3163335c61
commit 960ac05650
+15 -28
View File
@@ -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 name: Build
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on: on:
push: push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
strategy: ORGANIZATION_NAME: ${{ secrets.ORGANIZATION_NAME }}
matrix: REPOSITORY_NAME: ${{ secrets.REPOSITORY_NAME }}
node-version: [18.x] SITE_TITLE: ${{ secrets.SITE_TITLE }}
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ SITE_URL: ${{ secrets.SITE_URL }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3
uses: actions/setup-node@v3 with:
with: node-version: "18"
node-version: ${{ matrix.node-version }} cache: "npm"
cache: 'npm' - run: npm ci
- run: npm ci - run: npm run typecheck
- run: npm run build --if-present - run: npm run format:check
- run: npm run build
- 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 <support+actions@github.com>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}