Skip to content

Merge pull request #268 from streamich/dependabot/npm_and_yarn/webpac… #6

Merge pull request #268 from streamich/dependabot/npm_and_yarn/webpac…

Merge pull request #268 from streamich/dependabot/npm_and_yarn/webpac… #6

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
jobs:
release:
runs-on: ubuntu-latest
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
- run: yarn
- run: yarn test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}