Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgurakgun authored Oct 18, 2023
1 parent 446e4b8 commit a37933a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy to Github Pages

on:
workflow_dispatch: # can be triggered manually
pull_request: # and for PRs

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: 16
cache: npm

- name: Build
run: |
npm ci
npm run build
npm run export
# creates a .nojekyll file in the out directory to tell GitHub Pages not to treat the site as a Jekyll project.
touch out/.nojekyll

0 comments on commit a37933a

Please sign in to comment.