Initial commit

This commit is contained in:
Marco Lipparini
2023-07-15 20:03:01 +02:00
commit aa8e75520b
13 changed files with 1833 additions and 0 deletions

15
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: yarn
- run: yarn lint

22
.github/workflows/publish-releases.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Publish Package to npmjs.org
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
scope: '@mep-agency'
- run: yarn
- run: yarn lint && yarn build
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}