mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-02-22 16:15:54 +00:00
create test action
This commit is contained in:
parent
148b97f301
commit
9a64eca1a1
1 changed files with 15 additions and 0 deletions
15
.github/workflows/test.yml
vendored
Normal file
15
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
name: test
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore: [main]
|
||||||
|
jobs:
|
||||||
|
main:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with: { node-version: lts/*, cache: yarn }
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
yarn install
|
||||||
|
yarn build
|
Loading…
Add table
Reference in a new issue