Skip to content

Removed duplicated tests in the e2e suite #104

Removed duplicated tests in the e2e suite

Removed duplicated tests in the e2e suite #104

Workflow file for this run

name: Full CI/CD
on:
push:
branches: [master]
pull_request:
branches: [master]
release:
types: [created]
jobs:
Release:
name: Build, test and release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Install func CLI 🛠️
run: npm i -g azure-functions-core-tools@4 --unsafe-perm true
- name: Install dependencies 🛠️
run: npm ci
- name: Build project 👷‍♂️🏗️
run: npm run build:all
- name: Unit Testing 🧪
run: npm run test:all
- name: E2E Testing 🧪
run: npm run e2e:all
- name: Publish package on NPM 📦
if: ${{ github.event_name == 'release' }}
run: npm publish dist/packages/func --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}