Skip to content

Instantly share code, notes, and snippets.

@fokosun
Forked from stfsy/e2e-tests.yml
Created July 28, 2023 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fokosun/df7a31a4963cfbab1a2791e7aa200caf to your computer and use it in GitHub Desktop.
Save fokosun/df7a31a4963cfbab1a2791e7aa200caf to your computer and use it in GitHub Desktop.
Simple opinionated GitHub Actions workflow for end-to-end testing of Vue.js with TailwindCSS
name: e2e-tests
on: push
jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Git checkout
uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.0
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:e2e-headless
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment