2023-08-29 16:26:28 +02:00
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name : Publish package
on :
push :
branches : [ "master" ]
jobs :
2023-08-29 17:13:19 +02:00
publish :
strategy :
matrix :
os : [ ubuntu-latest, windows-latest]
runs-on : ${{ matrix.os }}
2023-08-29 16:26:28 +02:00
steps :
2024-06-29 10:28:57 +02:00
- uses : actions/checkout@v4
2024-06-29 10:19:46 +02:00
- name : Enable Corepack before setting up Node
run : corepack enable
2024-06-29 10:28:57 +02:00
- name : Use Node.js 20.x
uses : actions/setup-node@v4
2023-08-29 16:26:28 +02:00
with :
2024-06-29 10:14:31 +02:00
node-version : 20
2023-08-29 16:26:28 +02:00
cache : 'yarn'
2023-08-29 17:17:49 +02:00
architecture : 'x64'
2023-08-29 16:26:28 +02:00
- name : Install dependencies
2024-06-29 10:14:31 +02:00
run : yarn install --frozen-lockfile
2023-08-29 16:26:28 +02:00
- name : Build and publish package
run : yarn run publish
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}