Skip to content

Merge pull request #452 from act-org/dependabot/npm_and_yarn/elliptic… #89

Merge pull request #452 from act-org/dependabot/npm_and_yarn/elliptic…

Merge pull request #452 from act-org/dependabot/npm_and_yarn/elliptic… #89

Workflow file for this run

name: DLS Continuous Integration
on:
push:
branches:
- next
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Test
run: npm test
release:
name: Release
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release