Skip to content

update flow

update flow #1

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }} # make sure 2 publish workflows are not happening on the same time
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
- name: Install Dependencies
run: npm install --frozen-lockfile
- name: Check linting
run: npm run lint && npm run format
#- name: Testing
#run: