mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
25 lines
435 B
YAML
25 lines
435 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js 16.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run all
|
|
- run: ls
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
# if: github.ref_name == 'master'
|
|
steps:
|
|
- run: ls
|
|
# - run: npx semantic-release
|