build(deps): bump log4js from 6.4.1 to 6.9.1 #146
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: 'Test' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Cache deps | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('yarn.lock') }} | |
- name: Install deps | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install | |
- name: Test | |
run: yarn test | |
build: | |
name: 'Build' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Cache deps | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('yarn.lock') }} | |
- name: Install deps | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Docker build | |
run: docker build . | |
deploy-demo: | |
name: Deploy demo site | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
needs: [test, build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Cache deps | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ./node_modules | |
key: modules-${{ hashFiles('yarn.lock') }} | |
- name: Install deps | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: dist |