Skip to content

Merge pull request #295 from NCTUCSUnion/dependabot/npm_and_yarn/fron… #691

Merge pull request #295 from NCTUCSUnion/dependabot/npm_and_yarn/fron…

Merge pull request #295 from NCTUCSUnion/dependabot/npm_and_yarn/fron… #691

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: ["**"]
permissions:
contents: read
packages: write
jobs:
lint:
uses: ./.github/workflows/lint.yml
test:
needs: lint
uses: ./.github/workflows/test.yml
secrets: inherit
build:
needs: test
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/build.yml
secrets: inherit
deploy:
needs: build
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/deploy.yml
secrets: inherit