Skip to content

feat(memoize): improve comparison of previous dependencies when compa… #508

feat(memoize): improve comparison of previous dependencies when compa…

feat(memoize): improve comparison of previous dependencies when compa… #508

Workflow file for this run

name: Release
on:
push:
branches:
- "[0-9]+.x"
- "[0-9]+.[0-9]+.x"
- master
- next
- next-major
- beta
- alpha
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint
run: |
npm run lint:types
npm run lint
- name: Test
run: npm test
env:
CI: true
- name: Build
run: npm run build
- name: Release
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}