Fix Dockerfile #147
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Workflow | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20.8.1" | |
cache: "npm" | |
cache-dependency-path: "package-lock.json" | |
- name: Install dependencies | |
env: | |
CI: true | |
run: npm install | |
- name: Run lint | |
env: | |
CI: true | |
run: npm run lint | |
- name: Run Test | |
env: | |
CI: true | |
run: npm run test | |
- name: Run e2e Test | |
env: | |
CI: true | |
run: | | |
chmod +x ./test/run-e2e.sh | |
npm run test:e2e |