Skip to content

chore(deps): lock file maintenance (#73) #66

chore(deps): lock file maintenance (#73)

chore(deps): lock file maintenance (#73) #66

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
strategy:
matrix:
node-version: [20.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
- uses: shogo82148/actions-setup-redis@v1
with:
redis-version: "7.x"
- run: yarn install --frozen-lockfile
- run: yarn prettier:check
- run: yarn lint
- run: yarn test:ci --ci
- run: yarn build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}