Merge commit '0f6674a8474e5af3128cac9502eecba4f97bb1a7' #1
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: ci | ||
on: | ||
push: | ||
branches: | ||
- main | ||
# pull_request | ||
# branches: | ||
# - main | ||
jobs: | ||
build: | ||
runs_on: ubuntu-latest | ||
Check failure on line 14 in .github/workflows/ci.yml GitHub Actions / ciInvalid workflow file
|
||
strategy: | ||
matrix: | ||
node-version: [22] | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build | ||
run: npm run build:release | ||