Skip to content

Commit

Permalink
Merge pull request #1320 from wix-incubator/to_normal
Browse files Browse the repository at this point in the history
back workflow
  • Loading branch information
yoavtsook2806 authored Dec 24, 2024
2 parents a6e10f8 + 724d57a commit 7baf191
Showing 1 changed file with 23 additions and 28 deletions.
51 changes: 23 additions & 28 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This workflow will do a clean install of node dependencies, cache/restore them, 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: Test

on:
Expand All @@ -6,37 +9,32 @@ on:
pull_request:
branches: [ master, V4_Final ]

permissions:
contents: write
pull-requests: write
packages: write

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.20.0]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- name: Install and run lint
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint

tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.20.0]
test-script: ["ci:test-unit", "ci:test-e2e-layouts","ci:test-e2e-styleParams", "ci:test-e2e-integration"]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- name: Install, build and run test
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -54,45 +52,40 @@ jobs:
strategy:
matrix:
node-version: [16.20.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- uses: actions/checkout@v2
- name: Install, build, configure git and lerna publish
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build --if-present
- run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git remote set-url origin 'https://'"${{ secrets.PAT_TOKEN }}"'@github.com/wix/pro-gallery.git'
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "GitHub Actions"
- run: git remote set-url origin https://[email protected]/wix/pro-gallery
- run: |
echo "registry=http://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push to master
if: github.event_name == 'push'
# run: echo "this is a push to master"
run: |
git checkout ${{ github.ref_name }}
lerna publish patch --exact --yes --dist-tag stable --registry https://registry.npmjs.org --allow-branch ${{ github.ref_name }}
lerna publish patch --exact --yes --dist-tag stable --registry https://registry.npmjs.org
npm run changelog
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
- name: Push to pull request
if: github.event_name == 'pull_request' && github.actor != 'dependabot'
run: lerna publish --canary --preid ${{ github.sha }} --yes --registry https://registry.npmjs.org --allow-branch ${{ github.ref_name }}
if: github.event_name == 'pull_request' && github.actor != 'dependabot'
# run: echo "PULL REQUEST PUSH"
run: lerna publish --canary --preid ${{ github.sha }} --yes --registry https://registry.npmjs.org
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.PAT_TOKEN }}

update-playground:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
Expand All @@ -101,9 +94,9 @@ jobs:
matrix:
node-version: [16.20.0]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2
- name: update-playground
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
Expand All @@ -114,3 +107,5 @@ jobs:
env:
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }}
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}


0 comments on commit 7baf191

Please sign in to comment.