Skip to content

build: delete dependabot (#38) #120

build: delete dependabot (#38)

build: delete dependabot (#38) #120

Workflow file for this run

name: Continuous integration
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check Format
run: yarn format:check
- name: Lint
run: yarn lint
- name: Run unit tests
run: yarn test:unit
test-action:
name: GitHub Actions test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test local action
uses: ./
with:
organization: ${{ secrets.ORGANIZATION }}
auth-client-id: ${{ secrets.AUTH_CLIENT_ID }}
auth-client-secret: ${{ secrets.AUTH_CLIENT_SECRET }}
- name: Run e2e tests
run: yarn test:e2e
env:
ORGANIZATION: ${{ secrets.ORGANIZATION }}