Skip to content

Commit

Permalink
Merge pull request #120 from lephyrus/update-workflow
Browse files Browse the repository at this point in the history
Update Github Actions workflow
  • Loading branch information
lephyrus authored Dec 29, 2024
2 parents 38d625d + be2366b commit b621b1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
node-version: 20
node-version: 22
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node ${{ env.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node-version }}
cache: 'yarn'
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Lint
Expand All @@ -29,7 +29,7 @@ jobs:
run: yarn build:prod
- name: Pack
run: cd dist && npm pack
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: npm-package
path: dist/*.tgz

0 comments on commit b621b1d

Please sign in to comment.