This commit is contained in:
@@ -11,31 +11,31 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout project
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install pnpm
|
||||
- name: Setup pnpm
|
||||
uses: https://github.com/pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9
|
||||
run_install: false
|
||||
|
||||
- name: Install node
|
||||
- name: Setup node
|
||||
uses: https://github.com/actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: pnpm
|
||||
|
||||
- name: Install packages
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build project
|
||||
- name: Build projects
|
||||
run: pnpm run build
|
||||
|
||||
- name: Check project
|
||||
- name: Run checks
|
||||
run: pnpm run check
|
||||
|
||||
- name: Upload artifact
|
||||
- name: Upload artifacts
|
||||
run: |
|
||||
tar -czf build.tar.gz build
|
||||
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \
|
||||
|
||||
Reference in New Issue
Block a user