Skip to content

Commit

Permalink
add test on actions, remove meaningless codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Apr 21, 2024
1 parent fec5330 commit 939694c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 41 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Integration

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
test:
name: Running tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: yarn

- name: Install Dependencies
run: yarn install --immutable

- name: Execute Tests
run: yarn test run
41 changes: 0 additions & 41 deletions .github/workflows/codeql.yml

This file was deleted.

0 comments on commit 939694c

Please sign in to comment.