Skip to content

chore(deps): update typescript-eslint monorepo to ^7.16.0 #383

chore(deps): update typescript-eslint monorepo to ^7.16.0

chore(deps): update typescript-eslint monorepo to ^7.16.0 #383

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
# Prevents changesets action from creating a PR on forks
if: github.repository == 'open-wc/create'
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
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 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build package
run: yarn build
- name: Setup Git User
run: |
git config --global user.email "[email protected]"
git config --global user.name "Modern Web"
- name: Release & Publish
run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}