Skip to content

Bump @nuxt/test-utils from 3.14.2 to 3.14.3 (#213) #69

Bump @nuxt/test-utils from 3.14.2 to 3.14.3 (#213)

Bump @nuxt/test-utils from 3.14.2 to 3.14.3 (#213) #69

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node env πŸ—
uses: actions/setup-node@v4
with:
node-version: 20
check-latest: true
cache: 'yarn'
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: yarn install --immutable --immutable-cache --check-cache
- name: Deploy 😎
run: yarn generate
- name: Publish 🍻
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
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