chore(deps): update dependency @types/node to v20.17.3 #8676
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
if: (!contains(github.event.head_commit.message, 'ci(release)')) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- if: (!github.event.pull_request) | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PERSONAL_TOKEN }} | |
fetch-depth: 0 | |
- if: github.event.pull_request | |
uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ~/.cache # Default cache directory for both Yarn and Cypress | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Run CI scripts | |
run: yarn ci | |
- name: Publish to NPM | |
if: github.ref == 'refs/heads/master' | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
git reset --hard | |
git config --global user.name ${{ secrets.GIT_USER }} | |
git config --global user.email ${{ secrets.GIT_EMAIL }} | |
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN | |
bash scripts/default-registry.sh |