test: refactor fixtures
This commit is contained in:
30
tests/fixtures/continous-integration.diff
vendored
Normal file
30
tests/fixtures/continous-integration.diff
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
|
||||
new file mode 100644
|
||||
index 0000000..b6e5789
|
||||
--- /dev/null
|
||||
+++ b/.github/workflows/ci.yml
|
||||
@@ -0,0 +1,16 @@
|
||||
+name: Continuous Integration
|
||||
+
|
||||
+on:
|
||||
+ push:
|
||||
+ branches:
|
||||
+ - main
|
||||
+ pull_request:
|
||||
+ branches:
|
||||
+ - main
|
||||
+
|
||||
+jobs:
|
||||
+ build-and-test:
|
||||
+ runs-on: ubuntu-latest
|
||||
+ steps:
|
||||
+ - name: Checkout repository
|
||||
+ uses: actions/checkout@v2
|
||||
+ - name: Set up Node.js
|
||||
+ uses: actions/setup-node@v2
|
||||
+ with:
|
||||
+ node-version: '16'
|
||||
+ - name: Install dependencies
|
||||
+ run: npm ci
|
||||
+ - name: Run tests
|
||||
+ run: npm test
|
||||
Reference in New Issue
Block a user