Skip to content

Commit

Permalink
Merge pull request #66 from ArthurLobopro/dependencies-update
Browse files Browse the repository at this point in the history
chore: update workflow node version
  • Loading branch information
ArthurLobopro authored Dec 14, 2023
2 parents bdadc5c + 0e001b6 commit 54af95a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish App

on:
push:
branches: [ main ]
branches: [main]

jobs:
publish:
Expand All @@ -14,16 +14,15 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]

steps:

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
node-version: "18.x"
registry-url: "https://registry.npmjs.org"

- name: Install
run: |
Expand All @@ -32,13 +31,13 @@ jobs:
- name: compile-sass
run: |
yarn sass-compiler --compile
- name: compile typescript
run: |
yarn tsc
- name: Publish
run: |
yarn run publish
env:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 54af95a

Please sign in to comment.