Skip to content

Bump @oruga-ui/oruga-next from 0.8.11 to 0.8.12 #2012

Bump @oruga-ui/oruga-next from 0.8.11 to 0.8.12

Bump @oruga-ui/oruga-next from 0.8.11 to 0.8.12 #2012

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test:unit
- run: yarn test:e2e --headless
- name: Publish
if: ${{ github.event_name == 'push' && matrix.node-version == '18.x'}}
run: yarn deploy --domain http://indonesia-os-list.surge.sh/
env:
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }}
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}