Skip to content

Commit

Permalink
Merge branch '5.x' of github.com:wix/stylable into barak/vite
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrav committed Jan 1, 2024
2 parents 16910e2 + 888c5c1 commit 6eaf344
Show file tree
Hide file tree
Showing 189 changed files with 10,129 additions and 5,756 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/release3.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/release5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: release5
on:
push:
branches: ['5.x']
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org/'
cache: npm
- run: npm ci
- run: npm run build
- run: npx pleb@5 publish --tag release-5.x
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18, 16, 14]
node-version: [18, 16]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"program": "${workspaceFolder}/scripts/test-runner.js",
"args": ["--glob", "packages/*/dist/**/${fileBasenameNoExtension}.js", "--timeout", "999999"],
"runtimeArgs": ["--enable-source-maps"],
"preLaunchTask": "npm: build",
"preLaunchTask": "npm: build:dev",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**"],
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
Expand Down
Loading

0 comments on commit 6eaf344

Please sign in to comment.