Skip to content

Merge branch 'main' of https://github.com/shba007/com-peer #22

Merge branch 'main' of https://github.com/shba007/com-peer

Merge branch 'main' of https://github.com/shba007/com-peer #22

Workflow file for this run

name: Nuxt CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Bulid Artifacts
run: npm run build
# - name: Run Tests
# run: npm test
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}