Merge pull request #1318 from wix-incubator/new_yml4 #3226
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: Test | |
on: | |
push: | |
branches: [ master, V4_Final ] | |
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 | |
- name: Install and run lint | |
uses: actions/setup-node@v3 | |
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"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install, build and run test | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- run: npm run ${{ matrix.test-script }} | |
env: | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} | |
TEST_NAME: ${{ matrix.test-script }} | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [lint, tests] | |
strategy: | |
matrix: | |
node-version: [16.20.0] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Install, build, configure git and lerna publish | |
uses: actions/setup-node@v3 | |
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: | | |
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: | | |
git checkout ${{ github.ref_name }} | |
lerna publish patch --exact --yes --dist-tag stable --registry https://registry.npmjs.org --allow-branch ${{ github.ref_name }} | |
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 }} | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GH_TOKEN: ${{ secrets.PAT_TOKEN }} | |
update-playground: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' | |
needs: [lint, tests] | |
strategy: | |
matrix: | |
node-version: [16.20.0] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: update-playground | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: node scripts/deployToSurge | |
env: | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} |