Skip to content

chore(deps): update dependency jest-localstorage-mock to v2.4.26 #6

chore(deps): update dependency jest-localstorage-mock to v2.4.26

chore(deps): update dependency jest-localstorage-mock to v2.4.26 #6

Workflow file for this run

name: Node.js CI
on:
push:
branches: [master, next]
jobs:
release:
if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/master' || github.event.ref == 'refs/heads/next') }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test
- run: yarn lint:types
- run: yarn build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}