Skip to content

Commit

Permalink
use latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Lete114 committed Feb 26, 2024
1 parent 829ae09 commit 0e3cb09
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ name: Build Font Minify Web Site

on:
push:
branches: [ "site" ]
branches: ['site']

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install pnpm -g
pnpm i
pnpm build
cp -r dist/. .
- name: Build
run: |
npm install pnpm -g
pnpm i
pnpm build
cp -r dist/. .

0 comments on commit 0e3cb09

Please sign in to comment.