ci: use vueuse-motion-nightly
for nightly release channel
#267
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: Build and tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] # macos-latest, windows-latest | |
node: [18] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Install PNPM | |
uses: pnpm/[email protected] | |
with: | |
version: 8.7.0 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
registry-url: https://registry.npmjs.org/ | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Lint project | |
run: pnpm lint | |
- name: Test project | |
run: pnpm test | |
- name: Build project | |
run: pnpm build | |
- name: Cache dist | |
uses: actions/cache@v4 | |
with: | |
path: dist | |
key: ${{ matrix.os }}-node-v${{ matrix.node }}-${{ github.sha }} | |
nightly-release: | |
needs: | |
- test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [18] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Restore dist cache | |
uses: actions/cache@v4 | |
with: | |
path: dist | |
key: ${{ matrix.os }}-node-v${{ matrix.node }}-${{ github.sha }} | |
- name: Release Nightly | |
if: | | |
github.event_name == 'push' && | |
!startsWith(github.event.head_commit.message, '[skip-release]') && | |
!startsWith(github.event.head_commit.message, 'chore') && | |
!startsWith(github.event.head_commit.message, 'docs') | |
run: ./scripts/release-nightly.sh | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} |