-
-
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
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: 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/[email protected] | |
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