Skip to content

chore: github action android workflow added #180

chore: github action android workflow added

chore: github action android workflow added #180

Workflow file for this run

name: Nuxt CI
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
# - name: Run Tests
# run: pnpm test
# - name: Lint Code
# run: pnpm linit
# - name: Format Code
# run: pnpm format
- name: Bulid Artifacts
run: pnpm build
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}