Skip to content

Commit

Permalink
fix: just test (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jul 24, 2023
1 parent 46fd802 commit 50bb329
Showing 1 changed file with 58 additions and 58 deletions.
116 changes: 58 additions & 58 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,61 +35,61 @@ jobs:
# - name: Test Code
# run: npm run test -- --watchAll=false

build:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- uses: actions/setup-node@v3
with:
node-version: 19.7

- name: Setup Git
run: |
git config --local user.name cfl-bot
git config --local user.email [email protected]
# TODO: cache node packages
- name: Install Node Packages
run: npm install --only=dev

- name: Build Package
run: npm run build

- name: Push Build Files
run: |
git add lib/*
if ! git diff --staged --quiet; then
git commit -m "push build files [skip ci]"
git push
fi
release:
needs: [build]
concurrency: release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0

- name: Pull Build Files
run: git pull

- uses: actions/setup-node@v3
with:
node-version: 19.7

# TODO: group release dependencies
- name: Install Node Packages
run: npm install --only=dev

- name: Publish Semantic Release
env:
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: npx semantic-release
# build:
# needs: [test]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# with:
# token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

# - uses: actions/setup-node@v3
# with:
# node-version: 19.7

# - name: Setup Git
# run: |
# git config --local user.name cfl-bot
# git config --local user.email [email protected]

# # TODO: cache node packages
# - name: Install Node Packages
# run: npm install --only=dev

# - name: Build Package
# run: npm run build

# - name: Push Build Files
# run: |
# git add lib/*
# if ! git diff --staged --quiet; then
# git commit -m "push build files [skip ci]"
# git push
# fi

# release:
# needs: [build]
# concurrency: release
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
# steps:
# - uses: actions/checkout@v3
# with:
# token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# fetch-depth: 0

# - name: Pull Build Files
# run: git pull

# - uses: actions/setup-node@v3
# with:
# node-version: 19.7

# # TODO: group release dependencies
# - name: Install Node Packages
# run: npm install --only=dev

# - name: Publish Semantic Release
# env:
# GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# run: npx semantic-release

0 comments on commit 50bb329

Please sign in to comment.