Skip to content

build(deps-dev): bump svelte-loader from 3.1.2 to 3.1.9 #158

build(deps-dev): bump svelte-loader from 3.1.2 to 3.1.9

build(deps-dev): bump svelte-loader from 3.1.2 to 3.1.9 #158

Workflow file for this run

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