From 09b3f6d19b717dc5d3a2e824b02848edeb7f8862 Mon Sep 17 00:00:00 2001 From: Ven Date: Wed, 12 Oct 2022 16:06:53 +0200 Subject: ci: rename lint -> test --- .github/workflows/lint.yml | 27 --------------------------- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 27 deletions(-) delete mode 100644 .github/workflows/lint.yml create mode 100644 .github/workflows/test.yml (limited to '.github/workflows') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 5e8dc04..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: lint -on: - push: - branches: - - main - pull_request: - branches: - - main -jobs: - Build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json - - - name: Use Node.js 18 - uses: actions/setup-node@v2 - with: - node-version: 18 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Lint & Test if it compiles - run: pnpm test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..59fa3d2 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: test +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json + + - name: Use Node.js 18 + uses: actions/setup-node@v2 + with: + node-version: 18 + cache: "pnpm" + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Lint & Test if it compiles + run: pnpm test -- cgit