* Update verify.yml with setup-common-steps This commit updates the verify.yml file to include the setup-common-steps job. The setup-common-steps job is responsible for setting up the common steps required for the verify workflow. By adding this job, we ensure that the necessary setup is performed before running the verify job. The update includes the following changes: - Added the setup-common-steps job to the jobs section. - Added the needs keyword to the verify, browser-tests, node-tests, and node-tests-windows jobs, specifying that they depend on the setup-common-steps job. * Update actions/setup-node and actions/checkout versions This commit updates the versions of actions/setup-node and actions/checkout in the release.yml file. * Rename 'setup-common-steps' to 'init' in verify.yml Co-authored-by: gerjanvangeest <gerjanvangeest@users.noreply.github.com> * Update setup-node and action/checkout to v3 * Update setup-node and action/checkout to v3 and rename setup-common-steps to init --------- Co-authored-by: gerjanvangeest <gerjanvangeest@users.noreply.github.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
# Prevents changesets action from creating a PR on forks
|
|
if: github.repository == 'ing-bank/lion'
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: google/wireit@setup-github-actions-caching/v1
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node.js 16.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16.x
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- name: Install Dependencies
|
|
run: npm install --ci
|
|
|
|
- name: Create Release Pull Request or Publish to npm
|
|
id: changesets
|
|
uses: changesets/action@v1
|
|
with:
|
|
# This expects you to have a script called release which does a build for your packages and calls changeset publish
|
|
publish: npm run release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|