Skip to content

Commit

Permalink
Merge pull request #20 from dortania/update-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg authored Aug 8, 2024
2 parents f2d0f83 + 9352918 commit 09346b4
Show file tree
Hide file tree
Showing 3 changed files with 9,976 additions and 33 deletions.
84 changes: 52 additions & 32 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,81 @@
name: Build/Test/Deploy
on:
push:
branches-ignore:
- gh-pages
workflow_dispatch:
pull_request:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
name: Build and Deploy
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2-beta
- name: Checkout
uses: actions/checkout@v4
with:
node-version: '12'
- name: Checkout Repository
uses: actions/checkout@v2
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@v4
with:
fetch-depth: '0'
- name: Install
run: npm install
node-version: '22'
cache: 'yarn'
cache-dependency-path: ./yarn.lock
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master'}}
run: yarn run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: .vuepress/dist/
CLEAN: true
path: .vuepress/dist/
deploy:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
fetch-depth: '0'
node-version: '22'
cache: 'yarn'
cache-dependency-path: ./yarn.lock
- name: Install
run: npm install
run: yarn install --frozen-lockfile
- name: Lint
run: npm run lint-ci
run: yarn run lint-ci

spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
fetch-depth: '0'
node-version: '22'
cache: 'yarn'
cache-dependency-path: ./yarn.lock
- name: Install
run: npm install
run: yarn install --frozen-lockfile
- name: Spellcheck
run: npm run spellcheck
run: yarn run spellcheck
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ node_modules/
.DS_Store
package-lock.json
.vuepress/dist
yarn.lock
Loading

0 comments on commit 09346b4

Please sign in to comment.