Skip to content

chore: update deps, update nodejs import paths and eslint configuration #32

chore: update deps, update nodejs import paths and eslint configuration

chore: update deps, update nodejs import paths and eslint configuration #32

Workflow file for this run

on:
push:
branches:
- master
- beta
- alpha
pull_request:
workflow_dispatch:
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/cache@v3
with:
path: |
node_modules
.yarn/cache
key: node_modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: yarn lint
- run: yarn build
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/
release:
name: Release
needs: build
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/alpha'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/cache@v3
with:
path: |
node_modules
.yarn/cache
key: node_modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/download-artifact@v3
with:
name: dist
path: dist/
- run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}