Skip to content

Commit

Permalink
Add manual test workflow to see if the repo cookies still work (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neztore authored Jul 31, 2024
1 parent 1e0ba5d commit 6fe5d22
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 12,176 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run tests

on:
workflow_dispatch


jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up node
uses: actions/setup-node@v1
with:
node-version: 18

- name: Install yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn install

- name: Lint lib/
run: yarn lint
- name: Run tests
run: yarn test

Loading

0 comments on commit 6fe5d22

Please sign in to comment.